fmt/support/mkdocs.yml

49 lines
997 B
YAML
Raw Normal View History

2024-06-01 13:50:57 +00:00
site_name: '{fmt}'
2024-06-02 16:00:40 +00:00
docs_dir: ../doc
2024-06-01 13:50:57 +00:00
repo_url: https://github.com/fmtlib/fmt
theme:
name: material
features:
- navigation.tabs
2024-06-05 14:19:14 +00:00
- navigation.top
2024-06-01 13:50:57 +00:00
- toc.integrate
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js
- fmt.js
2024-06-01 14:32:43 +00:00
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/default.min.css
2024-06-01 14:32:43 +00:00
- fmt.css
2024-06-01 13:50:57 +00: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 13:50:57 +00:00
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
plugins:
2024-06-04 22:26:38 +00:00
- search
2024-06-01 13:50:57 +00:00
- mkdocstrings:
default_handler: cxx
nav:
2024-06-03 04:16:04 +00:00
- Home: index.md
2024-06-05 14:59:06 +00:00
- Get Started: get-started.md
2024-06-01 13:50:57 +00:00
- API: api.md
- Syntax: syntax.md
2024-06-09 14:40:02 +00:00
exclude_docs: ChangeLog-old.md
2024-06-01 13:50:57 +00:00
extra:
version:
provider: mike
2024-06-10 02:02:34 +00:00
generator: false