-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
41 lines (36 loc) · 1.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
site_name: Pyes Documentation
site_url: https://pyes.dev
nav:
- Home: index.md
- About:
- "Intro": about/intro.md
- "Why Pyes":
- "Why": about/why/why.md
- "Core Concepts": about/why/core_concepts.md
- "No, but why": about/why/actually_why.md
- Basics:
- "Variables": basics/variables.md
- "Types": basics/types.md
- "Generics": basics/generics.md
- Primitives:
- "Number": primitives/number.md
- "String": primitives/string.md
- "Boolean": primitives/boolean.md
- Data Structures:
- "Array": data_structures/array.md
- "Map": data_structures/map.md
- "Struct": data_structures/struct.md
theme:
name: material
markdown_extensions:
- attr_list
# Emojis support
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# Code block syntax highlighting
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences