satnaing / astro-paper

A minimal, accessible and SEO-friendly Astro blog theme
https://astro-paper.pages.dev/
MIT License
2.12k stars 440 forks source link

How change «Table of contents» lettering? #278

Closed AliIslamov closed 3 months ago

AliIslamov commented 4 months ago

I whant change «Table of contents» and «Open Table of contents» letterings, but I can't find where can I do it?

benjaminrae commented 4 months ago

By lettering do you mean the font? Or do you mean the text content?

AliIslamov commented 3 months ago

By lettering do you mean the font? Or do you mean the text content?

I mean the text content. And I already have found the solution.

I changed astro.config.ts from

...
remarkPlugins: [
      remarkToc,
      [
        remarkCollapse,
        {
          test: "Table of contents",
        },
      ],
    ],

To

...
remarkPlugins: [
      [remarkToc, { heading: 'NewTableContentLabel' }]
    ],

So I made the content list permanently visible and changed the list title to a custom one.