-
Notifications
You must be signed in to change notification settings - Fork 100
/
mkdocs.yml
74 lines (66 loc) · 1.75 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
site_name: C++ 핵심 가이드라인
site_description: "C++ 핵심 가이드라인 한글화 프로젝트"
site_author: C++ Korea
site_url: https://cppkorea.github.io/CppCoreGuidelines/
repo_name: CppKorea/CppCoreGuidelines
repo_url: https://github.com/CppKorea/CppCoreGuidelines
copyright: "Copyright (c) Standard C++ Foundation and its contributors"
markdown_extensions:
- codehilite:
guess_lang: false
theme:
name: "material"
# language: "kr"
extra:
search:
language: "en"
font:
text: "Nanum Gothic"
code: "Nanum Gothic Coding"
palette:
- scheme: default
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: "Indigo"
accent: "blue"
- scheme: slate
toggle:
icon: material/weather-night
name: Switch to dark mode
feature:
tabs: true
logo: "images/logo.svg"
docs_dir: sections
nav:
- Overview: home.md
- Introduction: Introduction.md
- References: References.md
- Sections:
- Architecture: Architecture.md
- Class: Class.md
- Concurrency: Concurrency.md
- Const: Const.md
- C-Style: CPL.md
- Enum: Enum.md
- Errors: Errors.md
- Expr: Expr.md
- Functions: Functions.md
- Glossary: Glossary.md
- GSL: GSL.md
- Interfaces: Interfaces.md
- Naming: Naming.md
- Not-Rule: Not.md
- Performance: Performance.md
- Philosophy: Philosophy.md
- Profile: Profile.md
- Resource: Resource.md
- Standard Library: SL.md
- Source: Source.md
- Templates: Templates.md
- Unclassified: Unclassified.md
- Appendix:
# - Discussion: appendix/Discussion.md
# - Libraries: appendix/Libraries.md
- Modernizing: appendix/Modernizing.md
- Tools: appendix/Tools.md