forked from sqreen/PyMiniRacer
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
39 lines (36 loc) · 778 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
site_name: PyMiniRacer
site_url: https://bpcreech.com/PyMiniRacer
theme:
name: material
custom_dir: data
logo: py_mini_racer.png
favicon: favicon.ico
palette:
primary: green
nav:
- Home: index.md
- API Reference: api.md
- Contributing: contributing.md
- Architecture: architecture.md
- Credits: authors.md
- History: history.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src] # search packages in the src folder
hooks:
- mkdocs_hooks.py
markdown_extensions:
- admonition
- sane_lists
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences