-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
147 lines (138 loc) · 3.4 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
site_name: McDic's Blog
site_url: "https://blog.mcdic.net"
site_author: "Minsung Kim (McDic)"
site_description: "McDic's Personal Blog"
repo_url: "https://github.com/McDic/BlogV2"
repo_name: "McDic/BlogV2"
remote_branch: deploy
strict: true
theme:
logo: assets/images/mcdic.jpg
favicon: assets/images/favicon.ico
name: material
features:
- search.suggest
- search.highlight
- navigation.footer
- content.code.copy
custom_dir: overrides
palette:
- scheme: default
primary: green
accent: light green
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
primary: green
accent: light green
toggle:
icon: material/weather-night
name: Switch to light mode
nav:
- index.md
- Architecture: architecture.md
- Post Format: format.md
- About: about.md
- AMA: ama.md
plugins:
- tags
- rss:
enabled: false
match_path: posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
- search
- mcdic:
enabled: true
post_views:
forced_update: false
git_dates:
format: "%b %d, %Y"
historical_batch: 10
sorted:
recent: 20
most_viewed: 20
- git-revision-date-localized:
enabled: false
enable_creation_date: true
type: iso_datetime
timezone: Asia/Seoul
- glightbox
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/
# Intentionally added features:
# - Admonitions
# - Annotations
# - Buttons
# - Code Blocks
# - Data Tables
# - Diagrams
# - Footnotes
# - Grid
# - Icons and Emojis
# - Images
# - Lists
# - Math
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- attr_list
- md_in_html
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- admonition
- pymdownx.details
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- tables
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- toc:
permalink: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- javascripts/autoscroll.js
- https://w.soundcloud.com/player/api.js
- javascripts/musicplayer.js
extra_css:
- stylesheets/admonitions.css
- stylesheets/extra.css
- stylesheets/footer.css
- stylesheets/404.css
- stylesheets/meta.css
- stylesheets/header.css
- stylesheets/article.css
extra:
analytics:
provider: google
property: G-LNQJ79T5LM
social:
- icon: fontawesome/brands/github
link: https://github.com/McDic
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/mcdic/
- icon: custom/codeforces
link: https://codeforces.com/profile/McDic
- icon: fontawesome/brands/discord
link: https://discordapp.com/users/mcdic
copyright: Every article in this blog is owned by Minsung Kim and licensed by CC BY-NC 4.0 DEED.