-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
108 lines (104 loc) · 2.54 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
site_name: simpyson
site_author: Carlos Bornes
site_description: >-
SimPYson is a Pythonic interface for SIMPSON.
nav:
- Home: index.md
- Installation:
- installation/install.md
- User Guide:
- Prepare Simpson simulations: user_guide/write_simpson.ipynb
- Read Simpson files: user_guide/read_files.ipynb
- Code Documentation: reference/
- About:
- about/contributors.md
- about/changelog.md
- about/license.md
repo_url: https://github.com/carlosbornes/simpyson/
edit_uri: blob/main/docs/
theme:
features:
- content.action.edit
- content.code.copy
- content.code.select
- content.code.annotate
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.path
- navigation.tracking
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
- search.share
- header.autohide
- toc.follow
name: material
palette:
primary: blue
scheme: dark
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.snippets
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ""
name: mermaid
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- mknotebooks:
input_dir: notebooks
output_dir: docs/notebooks
exclude: ['.*_checkpoint.ipynb']
- autorefs
- social
- offline
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
options:
docstring_style: numpy
docstring_section_style: list
separate_signature: true
merge_init_into_class: true
docstring_options:
ignore_init_summary: true
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md