😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 satır
653B

  1. // Hide empty <a> tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) -->
  2. // v0.0.1
  3. // Written by JooYoung Seo (jooyoung@psu.edu) and Atsushi Yasumoto on June 1st, 2020.
  4. document.addEventListener('DOMContentLoaded', function() {
  5. const codeList = document.getElementsByClassName("sourceCode");
  6. for (var i = 0; i < codeList.length; i++) {
  7. var linkList = codeList[i].getElementsByTagName('a');
  8. for (var j = 0; j < linkList.length; j++) {
  9. if (linkList[j].innerHTML === "") {
  10. linkList[j].setAttribute('aria-hidden', 'true');
  11. }
  12. }
  13. }
  14. });