-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
106 lines (94 loc) · 2.45 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
site_name: FSEG - Fast Sun Earth Geometry
site_author: Mike Song
site_description: Gemoetric Algorithms for the Sun-Earth System
site_url: https://mikesongming.github.io/SE-Geometry
copyright: Copyright © 2022 Mike Song
repo_name: mikesongming/SE-Geometry
repo_url: https://github.com/mikesongming/SE-Geometry
# edit_uri: ""
theme:
name: material
# nav_style: dark
logo: assets/images/logo.png
custom_dir: overrides
# highlightjs: true
# hljs_languages:
# - yaml
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- navigation.sections
# - navigation.indexes
- toc.integrate
- navigation.top
icon:
repo: fontawesome/brands/github
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- pymdownx.critic
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.superfences:
# renders textual graph descriptions into Mermaid graphs
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
plugins:
- search
- include-markdown
- mkdocstrings
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/squidfunk
name: Material on Github
- icon: fontawesome/brands/docker
link: https://hub.docker.com/repository/docker/gnosoir/SE-Geometry
name: Material on DockerHub
- icon: fontawesome/brands/python
link: https://pypi.org/project/mkdocs-material/
name: Material on PyPi
# extra:
# alternate:
# - name: English
# link: /en/
# lang: en
# - name: Chinese
# link: /zh/
# lang: zh
nav:
- Home: index.md
- Getting started:
- Installation: user-guide/install.md
- Usage: user-guide/usage.md
- Developer Guide:
- dev-guide/dev-guide.md
- Reference:
- SunEarthAnalyzer: reference/SunEarthAnalyzer.md
- DataClasses: reference/data.md
- About:
- Motivation: about/motive.md
- Contributing: about/contributing.md
- History: about/history.md
- License: about/license.md