1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
site_name: My Docs
nav:
- Home: index.md
- User Guide:
- Writing your docs: index.md
- About:
- License: index.md
- Release Notes:
- Version 1: index.md
- Version 2: index.md
- Version 3: index.md
site_url: http://www.mkdocs.org/
docs_dir: documentation
site_dir: output
theme:
name: mkdocs
custom_dir: theme_tweaks
analytics: {gtag: 'G-ABC123'}
copyright: "Dougal Matthews"
dev_addr: ::1:8000
use_directory_urls: false
repo_url: https://github.com/mkdocs/mkdocs/tree/master/mkdocs/tests/integration
repo_name: "GitHub"
extra_css: ["tweak.css"]
extra_javascript: ["tweak.js"]
extra_templates: ["custom.html"]
markdown_extensions:
- toc:
permalink:
- admonition:
strict: true
remote_branch: none
remote_name: upstream
extra:
some value: 1
|