File tree 4 files changed +28
-37
lines changed
4 files changed +28
-37
lines changed Original file line number Diff line number Diff line change
1
+ name : " Test MkDocs"
2
+
3
+ on : [push, workflow_dispatch]
4
+
5
+ permissions :
6
+ contents : read
7
+
8
+ jobs :
9
+ mkdocs :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-python@v4
14
+ with :
15
+ python-version : 3.11
16
+ architecture : x64
17
+
18
+ - name : " Run pip install"
19
+ run : >
20
+ python3 -m pip install -r requirements.txt
21
+ - name : " Run MkDocs(build)"
22
+ run : >
23
+ python3 -m mkdocs build --site-dir _site
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
> -- _ 비야네 스트롭스트룹 (Bjarne Stroustrup)_
6
6
7
7
* ISO C++ 최신버전(영문): https://github.com/isocpp/CppCoreGuidelines
8
- * 한글: https ://www. cppkorea.org /CppCoreGuidelines
8
+ * 한글: http ://cppkorea.github.io /CppCoreGuidelines/
9
9
10
10
## C++ 핵심 가이드라인 한글화 프로젝트
11
11
Original file line number Diff line number Diff line change 2
2
site_name : C++ 핵심 가이드라인
3
3
site_description : " C++ 핵심 가이드라인 한글화 프로젝트"
4
4
site_author : C++ Korea
5
- site_url : http ://www. cppkorea.org /CppCoreGuidelines
5
+ site_url : https ://cppkorea.github.io /CppCoreGuidelines/
6
6
7
7
repo_name : CppKorea/CppCoreGuidelines
8
- repo_url : http ://github.com/CppKorea/CppCoreGuidelines
8
+ repo_url : https ://github.com/CppKorea/CppCoreGuidelines
9
9
10
10
copyright : " Copyright (c) Standard C++ Foundation and its contributors"
11
11
@@ -42,10 +42,8 @@ theme:
42
42
docs_dir : sections
43
43
nav :
44
44
- Overview : home.md
45
- - Introduction :
46
- - Introduction.md
47
- - References :
48
- - References.md
45
+ - Introduction : Introduction.md
46
+ - References : References.md
49
47
- Sections :
50
48
- Architecture : Architecture.md
51
49
- Class : Class.md
You can’t perform that action at this time.
0 commit comments