-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
201 lines (190 loc) · 6.11 KB
/
mkdocs.yml
File metadata and controls
201 lines (190 loc) · 6.11 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
site_name: ABSESpy
nav:
- Home:
- AB-SESpy: index.md
- Installation: home/Installation.md
- Guide Checklist: home/guide_checklist.md
- Getting started: home/get_started.md
- Configuration Schema: home/configuration_schema.md
- Dependencies: home/dependencies.md
- License: home/license.md
- Contributions: home/contribution.md
- Acknowledge: home/acknowledge.md
# - RoadMap: home/roadmap.md
- Wiki:
- Wiki: wiki/wiki.md
- Refers: wiki/about.md
- Materials: wiki/materials.md
- Concepts: wiki/concepts.md
- Paper: paper/paper.md
- Tutorials:
- Tutorial: tutorial/tutorial.md
- Start from ABM: tutorial/tutorial_guide_from_ABM.md
- Start from SES: tutorial/tutorial_guide_from_SES.md
- Beginner Level:
- B01: tutorial/beginner/get_started.ipynb
- B02: tutorial/beginner/organize_model_structure.ipynb
- B03: tutorial/beginner/time_control.ipynb
- B04: tutorial/beginner/manage_parameters.ipynb
- B05: tutorial/beginner/actors.ipynb
- B06: tutorial/beginner/movement.ipynb
- B07: tutorial/beginner/predation_tutorial.ipynb
- B08: tutorial/beginner/hotelling_tutorial.ipynb
- Intermediate Level:
- I01: tutorial/intermediate/linking_actors.ipynb
- Advanced Level:
- A01: tutorial/advanced/geodata.ipynb
- A02: tutorial/advanced/viz_model.ipynb
# - A02: tutorial/advanced/human_behavior_simulation.ipynb # File not found
- Complete Examples:
- C01: tutorial/completing/fire_tutorial.ipynb
- C02: tutorial/completing/linking_actors.ipynb
- C03: tutorial/completing/random_seed.ipynb
# moved to Intermediate Level as I03
- Examples:
- Official Examples: examples/official.md
- Gallery: examples/gallery.md
- Community Examples: examples/community.md
- API references:
- API: api/api.md
- Model structure:
- Main Model: api/model.md
- Natural Modules: api/nature.md
- PatchModule (layer): api/layer.md
- Human Modules: api/human.md
- Cells: api/cells.md
- Actors' Operation:
- Actor (Agent): api/agents.md
- Actors Container: api/container.md
- Actors List: api/sequences.md
- Movements: api/move.md
- Interlinks: api/links.md
- Workflow Control:
- Time Control: api/time.md
- Random: api/random.md
- Experiment: api/experiment.md
- Analysis: api/analysis.md
theme:
name: "material"
logo: "https://songshgeo-picgo-1302043007.cos.ap-beijing.myqcloud.com/uPic/logo_abses.svg"
extra_css:
- assets/_mkdocstrings.css
- assets/notebook-styles.css
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
language: en
features:
- header.autohide
- navigation.tabs
- navigation.tracking
- toc.follow
- content.tooltips # only sponsor
- content.code.copy
- content.tooltips
plugins:
- search
- mkdocs-jupyter
- mkdocstrings:
handlers:
python:
paths: ["."]
inventories:
- https://docs.python.org/3/objects.inv
options:
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_root_heading: true
show_source: true
find_stubs_package: true
- exclude:
glob:
- plugins/*
- __pycache__/*
- bibtex:
bib_file: "docs/refs.bib"
# - mkdocs-simple-hooks: # Temporarily disabled - docs.plugins.checks module missing
# hooks:
# on_pre_build: 'docs.plugins.checks:on_pre_build'
- macros
- callouts
- glightbox
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/
- tags
- mike:
alias_type: symlink
canonical_version: latest
# - typeset
markdown_extensions:
- attr_list
- admonition
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- footnotes
- toc:
baselevel: 2
separator: "-"
permalink: true
title: Page contents
- attr_list
- md_in_html
- pymdownx.tasklist:
custom_checkbox: true
- abbr
# https://squidfunk.github.io/mkdocs-material/reference/icons-emojis/#search
# 表情符号拓展
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
# 以下配置参考 https://github.com/pydantic/pydantic/blob/main/mkdocs.yml#L6C6-L6C6
- tables
- admonition
- pymdownx.details
- pymdownx.extra
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
# Mermaid diagram support
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra:
version:
- provider: mike
tags:
model: tag
social:
- icon: fontawesome/brands/github
link: https://github.com/SongshGeoLab/ABSESpy
# - icon: fontawesome/brands/web
# link: https://cv.songshgeo.com/
# Add JavaScript for Mermaid diagrams
extra_javascript:
- https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.min.js
- javascripts/mermaid-init.js
repo_url: https://github.com/SongshGeoLab/ABSESpy