-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
76 lines (70 loc) · 1.66 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
site_name: Py2K
site_url: https://absaoss.github.io/py2k/
theme:
name: material
palette:
- scheme: default
primary: pink
accent: deep orange
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
- scheme: slate
primary: pink
accent: deep orange
toggle:
icon: material/lightbulb
name: Switch to dark mode
features:
- search.suggest
- search.highlight
icon:
repo: fontawesome/brands/github
language: en
repo_name: absaoss/py2k
repo_url: https://github.com/absaoss/py2k
nav:
- Py2K: index.md
- Tutorial - User Guide:
- Tutorial - User Guide - Intro: tutorial/index.md
- First Steps: tutorial/first_steps.md
- Security: tutorial/security.md
- API Reference: reference.md
- Motivation: motivation.md
- Release Notes: release_notes.md
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
setup_commands:
- import sys
- sys.path.append("py2k")
rendering:
show_source: false
watch:
- py2k
- search
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- markdown_include.include:
base_path: docs
- admonition
- codehilite
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format ""
- pymdownx.tabbed
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- https://unpkg.com/mermaid@8.4.6/dist/mermaid.min.js
- js/termynal.js
- js/custom.js