Skip to content

Commit

Permalink
fixes headings with footnotes
Browse files Browse the repository at this point in the history
  • Loading branch information
0xadada committed Dec 19, 2023
1 parent 750512d commit 8d1f963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@
a.href = `#${el.parentElement.id}`;
a.classList.add('selflink');
a.innerText = '#'
el.innerText += ' ';
el.appendChild(document.createTextNode(' '));
el.appendChild(a);
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/templates/scripts.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
a.href = `#${el.parentElement.id}`;
a.classList.add('selflink');
a.innerText = '#'
el.innerText += ' ';
el.appendChild(document.createTextNode(' '));
el.appendChild(a);
});
}
Expand Down

0 comments on commit 8d1f963

Please sign in to comment.