-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
76 lines (69 loc) · 1.91 KB
/
mkdocs.yaml
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: Code Notes
site_description: A personal collection of insights and practical tips on various programming topics.
site_author: Carlos Santos
site_url: https://code-notes.casantosmu.com
repo_url: https://github.com/casantosmu/code-notes
nav:
- Home: index.md
- .NET:
- CLI Commands: dotnet/cli-commands.md
- Manipulating Files: dotnet/manipulating-files.md
- Patterns:
- "State Machines: Example": patterns/finite-state-machines.md
- "The Observer Pattern: Example": patterns/observer-pattern.md
- SQL:
- Standard Data Types: sql/standard-data-types.md
- Standard Functions: sql/standard-functions.md
- PostgreSQL:
- Setting Up: postgresql/setting-up.md
- Ubuntu Server:
- Setting Up: ubuntu-server/setting-up.md
- Cloudflare and Nginx: ubuntu-server/cloudflare-nginx.md
- Remove Packages: ubuntu-server/remove-packages.md
- Resources: resources.md
theme:
name: material
favicon: assets/favicon.png
icon:
logo: material/file-document
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
plugins:
- privacy
- search
- git-revision-date-localized
- minify:
minify_html: true
- meta-descriptions:
enable_checks: true
markdown_extensions:
- toc:
permalink: true
# Admonitions
- admonition
- pymdownx.details
- pymdownx.superfences
# Code blocks
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn