-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
109 lines (103 loc) · 3.35 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
site_name: BigSMILES
repo_url: https://github.com/dylanwal/BigSMILES
repo_name: BigSMILES
theme:
name: material
logo: img/poly_cloud.png
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- navigation.tabs.sticky
- toc.integrate
palette:
- media: "(prefers-color-scheme: light)"
scheme: light
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: dark
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- search
- mermaid2
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
selection:
docstring_style: numpy
options:
heading_level: 3
show_root_heading: true
show_bases: false
show_source: false
docstring_section_style: spacy
merge_init_into_class: true
nav:
- Home: index.md
- Quickstart:
- Overview: quickstart/overview.md
- Lesson 1: quickstart/quickstart.md
- Tokenizing: quickstart/tokenizing.md
- Tutorials: tutorials/tutorials.md
- Reference:
- Overview: reference/overview.md
- Data Structures:
- Overview: reference/data_structure/overview.md
- BigSMILES: reference/data_structure/BigSMILES.md
- Atom: reference/data_structure/Atom.md
- Bond: reference/data_structure/Bond.md
- Branch: reference/data_structure/Branch.md
- Bond Descriptor: reference/data_structure/Bond_descriptor.md
- Bond Descriptor Atom: reference/data_structure/Bond_descriptor_atom.md
- Stochastic Fragment: reference/data_structure/Stochastic_fragment.md
- Stochastic Object: reference/data_structure/Stochastic_object.md
- Reaction: reference/data_structure/Reaction.md
- Methods:
- Overview: reference/methods/overview.md
- parse_tree: reference/methods/parse_tree.md
- Constructor:
- Overview: reference/constructor/overview.md
- Constructor: reference/constructor/constructor.md
- Constructor(strings): reference/constructor/constructor_str.md
- Constructor(tokens): reference/constructor/constructor_tokens.md
- Constructor(reaction): reference/constructor/constructor_reaction.md
- Tokenizer: reference/constructor/tokenizer.md
- Configuration: reference/configuration.md
- Errors: reference/errors.md
- BigSMILES:
- Overview: bigsmiles/overview.md
- Specification: bigsmiles/specification.md
- Examples: bigsmiles/examples.md
- References: bigsmiles/references.md
- Developers: developers/developers.md
- Extras:
- Change Log: extras/change_log.md
- License: extras/license.md
markdown_extensions:
- toc:
baselevel: 1
toc_depth: 3
permalink: True
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.caret
- pymdownx.tilde
- pymdownx.superfences:
# make exceptions to highlighting of code:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
extra_css:
- stylesheets/extra.css
- stylesheets/mkdocstrings.css