-
Notifications
You must be signed in to change notification settings - Fork 13
/
mkdocs.yml
52 lines (46 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
# Project information
site_name: Python Synopsis
site_description: Python Study Guide
site_author: Goga Patarkatsishvili
# Repository
repo_name: ent1c3d/Python-Synopsis
repo_url: https://ent1c3d.github.io/Python-Synopsis/site/
copyright: Copyright © 2017 Goga Patarkatsishvili
# Pages
pages:
- Home : index.md
- Beginner:
- The Python Programming Language, Implementation and Adventages : beginner/Python_Programming_Lanuage.md
- Python Installation : beginner/Python_Installation.md
- Start Coding With Python : beginner/Start_Coding_With_Python.md
- Data Types in Python 3 : beginner/Data_Types_In_Python_3.md
- Variables and Assignment : beginner/Variables_And_Assignment.md
- Conditions : beginner/Conditions.md
- For Loop : beginner/For_Loop.md
- Functions : beginner/Functions.md
- Scope : beginner/Scopes.md
- Scopes, Namespaces and LEGB Rule : beginner/Scopes_Namespaces_LEGB_rule.md
- Advanced:
- Context Managers : advanced/Context_Managers.md
- Python Metaclasses : advanced/Python_Metaclasses.md
- Python Magic Methods : advanced/Python_Magic_Methods.md
- About: About.md
# Documentation and theme
theme: material
markdown_extensions:
- fontawesome_markdown
- codehilite
# Options
extra:
#logo: 'images/logo.PNG'
palette:
primary: 'blue grey'
accent: 'light blue'
# font:
# text: 'Roboto'
# code: 'Roboto Mono'
social:
- type: 'github'
link: 'https://github.com/ent1c3d'
- type: 'linkedin'
link: 'https://www.linkedin.com/in/ent1c3d/'