-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
134 lines (127 loc) · 3.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
site_name: pymwp
site_description: "Implementation of MWP analysis on C code in Python."
docs_dir: docs
site_dir: pages
repo_url: https://github.com/statycc/pymwp
repo_name: statycc/pymwp
edit_uri: blob/main/docs/
use_directory_urls: true
nav:
- Installation & Use: index.md
- Supported Features: features.md
- Examples: examples.md
- Demo: demo.md
- Modules:
- Introduction: modules.md
- Analysis: analysis.md
- Bound: bound.md
- Choice: choice.md
- Constants: constants.md
- Delta Graph: delta_graphs.md
- File I/O: file_io.md
- Matrix: matrix.md
- Monomial: monomial.md
- Parser: parser.md
- Polynomial: polynomial.md
- Relation: relation.md
- Relation List: relation_list.md
- Result: result.md
- Semiring: semiring.md
- Syntax: syntax.md
- Utilities: utilities.md
- Contributing: contributing.md
- Release History: https://github.com/statycc/pymwp/releases
- Code Archive: https://doi.org/10.5281/zenodo.7879822
- License: https://github.com/statycc/pymwp/blob/main/LICENSE
theme:
name: material
favicon: ""
features:
- navigation.sections
- navigation.top
- content.code.copy
- content.tooltips
- search.highlight
- search.suggest
- toc.follow
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: light
primary: blue grey
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Inter
code: Fira Mono
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
use_pygments: true
linenums: false
linenums_style: pymdownx.inline
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- pymdownx.magiclink
- pymdownx.details
- admonition
- attr_list
- md_in_html
- def_list
- footnotes
- abbr
plugins:
- search
- include-markdown
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_labels: true
show_bases: true
show_source: false
show_signature: true
show_root_heading: false
show_root_toc_entry: false
show_root_full_path: false
show_root_members_full_path: false
show_object_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
docstring_style: google
docstring_section_style: table
merge_init_into_class: true
separate_signature: true
annotations_path: brief
line_length: 80
show_signature_annotations: true
signature_crossrefs: true
unwrap_annotated: true
filters:
- "!^_"
extra_css:
- assets/styles.css
extra_javascript:
- //cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- assets/config.js