-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
executable file
·56 lines (50 loc) · 1.31 KB
/
mkdocs.yml
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
47
48
49
50
51
52
53
54
55
56
site_name: Python Poetry Template
site_description: A template for dockerized python projects with poetry for dependency management
site_author: Author Name
edit_uri: edit/main/docs/
repo_name: pypoetry_template
repo_url: https://github.com/povanberg/python-poetry-template
copyright: Maintained by <a href="[email protected]">Author Name</a>.
nav:
- Home:
- Introduction: index.md
- Workflows: workflows.md
- MkDocs: mkdocs.md
- Container registry: registry.md
- Dependabot: dependabot.md
- Project structure: structure.md
- Reference: reference/
plugins:
- search
- section-index
- literate-nav:
nav_file: SUMMARY.md
- gen-files:
scripts:
- docs/gen_reference_pages.py
- mkdocstrings:
watch:
- src/pypoetry_template
theme:
logo: assets/project_logo.png
favicon: assets/project_logo.png
name: material
features:
- navigation.tabs
- navigation.tabs.sticky
- toc
- toc.follow
palette:
- media: "(prefers-color-scheme: dark)"
scheme: default
extra_css:
- stylesheets/extra.css
markdown_extensions:
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
generator: false