-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
42 lines (37 loc) · 940 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
40
41
42
site_name: pyggp
site_url: https://pyggp.github.io/
site_author: Lukas Grassauer
site_description: Python implementation of the General Game Playing (GGP) framework
repo_name: entze/pyggp
repo_url: https://github.com/entze/pyggp
copyright: Copyright © 2023 Lukas Grassauer
theme:
name: material
font: false
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.indexes
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
docstring_options:
ignore_init_summary: true
filters:
- "!__repr__"
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences