-
Notifications
You must be signed in to change notification settings - Fork 20
/
mkdocs.yml
103 lines (98 loc) · 3.63 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
site_dir: '../cppmap.github.io'
# Project information
site_name: C++ の歩き方 | cppmap
site_url: https://cppmap.github.io/
site_author: Ryo Suzuki
site_description: C++17, C++20, C++23, C++26 に関する情報を調査・提供します
# Repository
repo_name: cppmap/cppmap.docs
repo_url: https://github.com/cppmap/cppmap.docs
edit_uri: ""
# Copyright
copyright: To the extent possible under law, Ryo Suzuki has waived all copyright and related or neighboring rights to C++ の歩き方 | CppMap. Third party copyrights are property of their respective owners.
# Theme
theme:
name: material
language: ja
palette:
primary: teal
accent: teal
logo: images/donut_small-white-24dp.svg
favicon: assets/images/logo.png
features:
- tabs
plugins:
- search:
lang:
- en
- ja
separator: '[\s 、。,.がのをにへとでやかもる「」『』]+'
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/Reputeless
markdown_extensions:
- admonition
- attr_list
- codehilite
- footnotes
- meta
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_css:
- "https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css"
- cppmap_styles.css
# Page tree
nav:
- Home: index.md
- C++ 規格:
- C++20 の新機能: standardization/cpp20.md
- C++23 の新機能: standardization/cpp23.md
- C++23 以降に向けた提案: standardization/cppx.md
- 標準化会議: standardization/meetings.md
- 提案リスト: standardization/proposals.md
- 処理系の対応状況: standardization/status.md
- C++ 規格書: standardization/working-drafts.md
- C++ 標準ライブラリ: standardization/header.md
- 記事:
- コメントアウトのトリック: articles/comment-tricks.md
- なぜかコンパイルできる: articles/it-compiles.md
- なぜかコンパイルできない: articles/it-does-not-compile.md
- 予約語の読みと名前の由来: articles/how-to-read-keywords.md
- 標準ライブラリの読みと名前の由来: articles/how-to-read-libraries.md
- IEEE 754 演算のルール: articles/ieee754-arithmetic.md
- C++ 関連の略語: articles/acronyms.md
- C++ 型特性 早見表: articles/type-traits.md
- C++ アクセス指定子の効果: articles/member-access.md
- 学習:
- C++ 書籍: learn/books.md
- C++ オンライン資料: learn/online-resources.md
- C++ ブログ集: learn/blogs.md
- 国内の C++ 勉強会: learn/studymeetings.md
- C++ コミュニティ: learn/communities.md
- C++ カンファレンス: learn/conferences.md
- ライブラリ:
- Boost: libraries/boost.md
- コンテナ: libraries/containers.md
- テキストデータ: libraries/text-data.md
- 並行・並列: libraries/concurrency.md
- テストフレームワーク: libraries/testing.md
- 数学: libraries/math.md
- ツール:
- C++ オンラインコンパイラ: tools/onlinecompilers.md
- C++ コンパイラ: tools/compilers.md
- C++ パッケージマネージャ: tools/package-manager.md
- C++ コードフォーマッタ: tools/code-formatter.md
- C++ リンター: tools/linter.md
- C++ プロジェクトテンプレート: tools/project-template.md
- C++ 用 .gitignore: tools/gitignore.md
- 貢献:
- コントリビュータ: contribution/contributors.md