fmt/support/mkdocs.yml

49 lines
997 B
YAML
Raw Normal View History

2024-06-01 06:50:57 -07:00
site_name: '{fmt}'
2024-06-02 09:00:40 -07:00
docs_dir: ../doc
2024-06-01 06:50:57 -07:00
repo_url: https://github.com/fmtlib/fmt
theme:
name: material
features:
- navigation.tabs
2024-06-05 07:19:14 -07:00
- navigation.top
2024-06-01 06:50:57 -07:00
- toc.integrate
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js
- fmt.js
2024-06-01 07:32:43 -07:00
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/default.min.css
2024-06-01 07:32:43 -07:00
- fmt.css
2024-06-01 06:50:57 -07:00
markdown_extensions:
- pymdownx.highlight:
# Use JavaScript syntax highlighter instead of Pygments because it
# automatically applies to code blocks extracted through Doxygen.
use_pygments: false
2024-06-01 06:50:57 -07:00
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
plugins:
2024-06-04 15:26:38 -07:00
- search
2024-06-01 06:50:57 -07:00
- mkdocstrings:
default_handler: cxx
nav:
2024-06-02 21:16:04 -07:00
- Home: index.md
2024-06-05 07:59:06 -07:00
- Get Started: get-started.md
2024-06-01 06:50:57 -07:00
- API: api.md
- Syntax: syntax.md
2024-06-09 07:40:02 -07:00
exclude_docs: ChangeLog-old.md
2024-06-01 06:50:57 -07:00
extra:
version:
provider: mike
2024-06-09 19:02:34 -07:00
generator: false