-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
99 lines (89 loc) · 2.17 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
site_name: PSS Cookbook
site_description: Usage for PSS Language
site_author: Luther Lee
copyright: Copyright © 2023 Luther Lee
repo_url: https://github.com/LeeKaiXuan/PSS_Cookbook
edit_uri: blob/main/docs/
repo_name: LeeKaiXuan/PSS_Cookbook
theme:
name: material
icon:
repo: fontawesome/brands/github
view: material/eye
features:
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
extra:
status:
New: New
Stable: Stable
WIP: Work-In-Progress
extra_css:
- includes/extra.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- includes/tablesort.js
markdown_extensions:
- abbr
- admonition
- attr_list
- md_in_html
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.snippets:
check_paths: True
auto_append:
- 'docs/includes/abbreviations.md'
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
plugins:
- git-revision-date-localized:
enable_creation_date: true
type: timeago
- search
nav:
- Home: 'index.md'
- Data Types:
- DataTypes/index.md
- Integer Types: 'DataTypes/IntegerTypes.md'
- Operator:
- Operator/index.md
- Binary Bitwise: 'Operator/BinaryBitwise.md'
- Primary Expressions: 'Operator/Expressions.md'
- Collections:
- Array: 'Collections/Arrays.md'
- List: 'Collections/Lists.md'
- Map: 'Collections/Maps.md'
- Set: 'Collections/Sets.md'
- Procedural:
- Procedural/index.md
- Traversal:
- Traversal/index.md
not_in_nav:
includes/