We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b41164 commit 3a45a27Copy full SHA for 3a45a27
src/components/blog/Toc.astro
@@ -41,7 +41,7 @@ const { headings } = Astro.props;
41
<ul>
42
{
43
headings
44
- .filter((heading) => heading.depth < 4)
+ .filter((heading) => heading.depth < 4 && heading.slug !== "footnote-label")
45
.map(({ slug, text, depth }) => (
46
<li>
47
<a id={`toc-${slug}`} href={`#${slug}`}>
0 commit comments