-
Notifications
You must be signed in to change notification settings - Fork 40
/
mkdocs.yml
24 lines (23 loc) · 896 Bytes
/
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
site_name: pytest_cases
# site_description: 'A short description of my project'
repo_url: https://github.com/smarie/python-pytest-cases
# docs_dir: docs
# site_dir: ../site
# default branch is main instead of master now on github
edit_uri : ./edit/main/docs
nav:
- Home: index.md
- Examples: examples.md
- pytest goodies: pytest_goodies.md
- fixture unions theory: unions_theory.md
- API reference: api_reference.md
- Changelog: changelog.md
theme: material # readthedocs mkdocs
markdown_extensions:
- pymdownx.highlight # see https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#highlight
- pymdownx.superfences # same as above as well as code blocks inside other blocks
- admonition # to add notes such as http://squidfunk.github.io/mkdocs-material/extensions/admonition/
# - codehilite:
# guess_lang: false
- toc:
permalink: true