-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
95 lines (89 loc) · 3.08 KB
/
mkdocs.yml
File metadata and controls
95 lines (89 loc) · 3.08 KB
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
site_name: Introduction to Python Programming
docs_dir: docs/
repo_name: "IntroToPython"
repo_url: "https://github.com/Divy1211/IntroToPython"
nav:
- Python:
- What is Programming: "index.md"
- Basic Concepts of Python:
- Variables: "vars.md"
- Operations: "operations.md"
- Flow Control: "flow_control.md"
- Object Oriented Programming:
- Functions: "functions.md"
- Different Types of Arguments: "arguments.md"
- Classes and Objects: "classes_objects.md"
- Inheritance: "inheritance.md"
markdown_extensions:
- admonition # https://squidfunk.github.io/mkdocs-material/reference/admonitions/#admonition
- pymdownx.caret # handling sub- and superscripts
- pymdownx.mark # highlighting of text
- pymdownx.tilde # strikethrough of text
- pymdownx.keys # https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#keys
- pymdownx.superfences # https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#superfences
- pymdownx.tabbed: # https://squidfunk.github.io/mkdocs-material/reference/content-tabs/#tabbed
alternate_style: true
- pymdownx.details # https://squidfunk.github.io/mkdocs-material/reference/admonitions/#details
- pymdownx.highlight: # https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#code-blocks
linenums: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.smartsymbols # supporting special characters like copyright symbol (c)
- pymdownx.arithmatex: # https://squidfunk.github.io/mkdocs-material/reference/mathjax/#arithmatex
generic: true
- pymdownx.tasklist: # https://squidfunk.github.io/mkdocs-material/reference/lists/#tasklist
custom_checkbox: true
clickable_checkbox: true
- toc:
permalink: true
plugins:
# - mknotebooks
- search:
lang: en
separator: '[\s\-\.\_]+'
theme:
# favicon:
language: en
name: material
features:
- content.code.annotate
- content.code.copy
- navigation.expand
- navigation.indexes
# - navigation.instant
# - navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
# - toc.integrate
font:
text: Roboto
code: Fira Code
icon:
logo: octicons/file-code-24
admonition:
abstract: octicons/checklist-16
bug: octicons/bug-16
danger: octicons/zap-16
example: octicons/beaker-16
failure: octicons/x-circle-16
info: octicons/info-16
note: octicons/tag-16
success: octicons/check-16
tip: octicons/squirrel-16
question: octicons/question-16
quote: octicons/quote-16
warning: octicons/alert-16
palette:
scheme: slate
primary: red
accent: red
extra_javascript:
- https://cdn.jsdelivr.net/npm/mathjax@3.2.0/es5/tex-mml-chtml.js
extra_css:
- ./css/style.css