37 lines
706 B
YAML
37 lines
706 B
YAML
site_name: Example MkDocs
|
|
theme:
|
|
name: "material"
|
|
palette:
|
|
- scheme: slate
|
|
primary: "teal"
|
|
accent: cyan
|
|
features:
|
|
- content.code.annotate
|
|
|
|
docs_dir: "mkdocs"
|
|
|
|
plugins:
|
|
- search
|
|
|
|
markdown_extensions:
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.highlight:
|
|
linenums: true
|
|
linenums_style: pymdownx-inline
|
|
- pymdownx.superfences
|
|
- markdown.extensions.attr_list
|
|
- mdx_truly_sane_lists:
|
|
nested_indent: 2
|
|
- def_list
|
|
- admonition
|
|
|
|
nav:
|
|
- Home: index.md
|
|
|
|
extra_javascript:
|
|
- https://polyfill.io/v3/polyfill.min.js?features=es6
|
|
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
|