TOC.Integrate not working for small project? See code and sample doc #8177
Answered
by
mocdaniel
Vibemetheus
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
mocdaniel
Apr 23, 2025
Replies: 1 comment 3 replies
-
The formatting of your site_name: My MkDocs Site
site_url: https://example.com
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.instant.progress
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking I'll shamelessly plug my free, open-source tool materialconfig.dev here that allows you to generate a valid |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Vibemetheus
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The formatting of your
mkdocs.yml
isn't correct - thefeatures
key needs to go undertheme
, not underpalette
in the config file, like this:I'll shamelessly plug my free, open-…