-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
154 lines (144 loc) · 5.06 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
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
site_name: Bare Minimum Docs
site_url: https://bareminimumstudios.github.io/Bare-Minimum-Docs/
site_description: 'Bare Minimum Wiki'
theme:
name: null
custom_dir: mkdocs-material/material
features:
- search.suggest
- search.highlight
- search.share
- navigation.indexes
- navigation.expand
- navigation.top
- navigation.tracking
- navigation.tabs
- navigation.sections
- header.autohide
- navigation.footer
- content.tabs.link
- content.code.annotation
- content.code.copy
- content.code.select
- content.tooltips
palette:
- scheme: slate
primary: indigo
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: indigo
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
favicon: assets/icon.png # Path to the favicon
icon:
logo: octicons/accessibility-16 # Logo icon
language: en # Language setting for the website
font: # Font settings
text: Fira Sans # Font for regular text
code: Fira Mono # Font for code blocks
copyright: "Documentation by <a style=\"color: #13A6F0;\" href=\"https://github.com/pokesmells\">Poke</a>, with assistance from the Bare Minimum Team."
extra:
social:
- icon: fontawesome/brands/discord
link: https://discord.com/invite/pcRw79hwey
- icon: fontawesome/brands/github
link: https://github.com/BareMinimumStudios
projects:
docs:
repo: https://github.com/BareMinimumStudios/Bare-Minimum-Docs
name: Bare Minimum Docs
playerex:
repo: https://github.com/BareMinimumStudios/playerex
name: PlayerEx
data-attributes:
repo: https://github.com/BareMinimumStudios/data-attributes
name: Data Attributes
opc:
repo: https://github.com/BareMinimumStudios/Offline-Player-Cache
name: Offline Player Cache
markdown_extensions: # Markdown extensions/settings
- admonition # Allow admonitions in Markdown
- attr_list # Allow attribute lists in Markdown
- md_in_html
- pymdownx.betterem
- pymdownx.details
- pymdownx.caret
- pymdownx.mark
- pymdownx.tasklist: # Enable task lists in Markdown
custom_checkbox: true # Custom checkbox style
- pymdownx.details # Enable details/summary in Markdown
- pymdownx.keys # Enable keyboard shortcuts in Markdown
- pymdownx.arithmatex: # Enable math rendering in Markdown
generic: true # Use generic LaTeX mode
- pymdownx.highlight: # Enable syntax highlighting in Markdown
anchor_linenums: true # Add anchor links to line numbers
line_spans: --span
pygments_lang_class: true
- pymdownx.inlinehilite # Enable inline code highlighting
- pymdownx.snippets # Enable code snippets in Markdown
- footnotes # Enable footnotes in Markdown
- pymdownx.superfences: # Enable custom fenced code blocks in Markdown
custom_fences: # Define custom fences
- name: mermaid # Name of custom fence
class: mermaid # CSS class for custom fence
format: !!python/name:pymdownx.superfences.fence_code_format # Format for custom fence
- pymdownx.tabbed: # Enable tabbed sections in Markdown
alternate_style: true # Use alternate style for tabs
- toc: # Enable table of contents in Markdown
permalink: true # Add permalinks to TOC
- pymdownx.emoji: # Enable emoji support in Markdown
emoji_index: !!python/name:materialx.emoji.twemoji # Emoji index
emoji_generator: !!python/name:materialx.emoji.to_svg # Emoji generator
- pymdownx.tilde # Enable strike-through syntax using ~~~
- pymdownx.critic # Enable Critic Markup syntax in Markdown
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- git-revision-date-localized:
type: timeago
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
skip_classes:
- custom-skip-class-name
auto_caption: false
caption_position: bottom
background: none
shadow: true
nav:
- Home:
- index.md
- fabric-events.md
- Data Attributes:
- data-attributes/home.md
- data-attributes/datapack-setup.md
- data-attributes/stacking-behavior.md
- data-attributes/overrides.md
- data-attributes/entity-types.md
- data-attributes/attribute-functions.md
- data-attributes/attribute-properties.md
- data-attributes/api.md
- PlayerEx:
- playerex/home.md
- playerex/faq.md
- playerex/in-game-content.md
- playerex/textplaceholderapi.md
- playerex/api.md
- Offline Player Cache:
- opc/home.md
- opc/cacheablevalue.md
- opc/api.md