vuejs / vitepress

Vite & Vue powered static site generator.
https://vitepress.dev
MIT License
13.22k stars 2.13k forks source link

Inquiry: Customizing "On this page" Navigation Title in VitePress #4220

Closed shuizhutieniu closed 2 months ago

shuizhutieniu commented 2 months ago

I am wondering if there is currently a feature that allows customization of the "On this page" navigation title. If not, I would like to suggest adding this capability to enable better customization for different contexts. image

brc-dd commented 2 months ago

https://vitepress.dev/reference/default-theme-config#outline

shuizhutieniu commented 2 months ago

I'm sorry I don't know how to change the navigation title of each page, I've tried:

---
outline:
  label: 'myTitle'
  level: [2, 4]
---

But it didn't work.

brc-dd commented 2 months ago

https://stackblitz.com/edit/vite-49kuwj?file=docs/index.md,docs/.vitepress/config.ts

shuizhutieniu commented 2 months ago

https://stackblitz.com/edit/vite-49kuwj?file=docs/index.md,docs/.vitepress/config.ts

Thank you for your answer, but I want each page to have a given navigation title, so I think it needs to be modified using "frontmatter", so I tried the methods mentioned above, but it didn't work

brc-dd commented 2 months ago

Overriding label per page via frontmatter is not supported. Why do you need it?

shuizhutieniu commented 2 months ago

I had a strange idea. Thank you all the same