docs(NOI竞赛大纲): 添加 C++ 程序设计基础文档

- 新增程序基本概念、基本数据类型、程序基本语句等文档
- 更新 mkdocs.yml 配置,优化文档结构- 调整部分文档路径,提高可读性
This commit is contained in:
sairate 2025-04-19 19:46:41 +08:00
parent c7fd80d7fb
commit 812941b88d
7 changed files with 17 additions and 27 deletions

View File

@ -5,8 +5,13 @@
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="02f9b0c7-a97d-4689-afaa-3f6563382100" name="更改" comment="docs(NOI竞赛大纲): 添加 C++ 程序设计基础文档&#10;&#10;- 新增程序基本概念、基本数据类型、程序基本语句等文档&#10;- 更新 mkdocs.yml 配置,优化文档结构- 调整部分文档路径,提高可读性"> <list default="true" id="02f9b0c7-a97d-4689-afaa-3f6563382100" name="更改" comment="docs(NOI竞赛大纲): 添加 C++ 程序设计基础文档&#10;&#10;- 新增程序基本概念、基本数据类型、程序基本语句等文档&#10;- 更新 mkdocs.yml 配置,优化文档结构- 调整部分文档路径,提高可读性">
<change afterPath="$PROJECT_DIR$/_static/css/extra.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/_static/css/extra.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/notebook/mkdocs.yml" beforeDir="false" afterPath="$PROJECT_DIR$/notebook/mkdocs.yml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/notebook/themes/css/custom.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/notebook/themes/js/auto-render.min.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/notebook/themes/js/katex.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/notebook/themes/js/katex.min.js" beforeDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -222,7 +227,15 @@
<option name="project" value="LOCAL" /> <option name="project" value="LOCAL" />
<updated>1745049298628</updated> <updated>1745049298628</updated>
</task> </task>
<option name="localTasksCounter" value="15" /> <task id="LOCAL-00015" summary="docs(NOI竞赛大纲): 添加 C++ 程序设计基础文档&#10;&#10;- 新增程序基本概念、基本数据类型、程序基本语句等文档&#10;- 更新 mkdocs.yml 配置,优化文档结构- 调整部分文档路径,提高可读性">
<option name="closed" value="true" />
<created>1745050518394</created>
<option name="number" value="00015" />
<option name="presentableId" value="LOCAL-00015" />
<option name="project" value="LOCAL" />
<updated>1745050518394</updated>
</task>
<option name="localTasksCounter" value="16" />
<servers /> <servers />
</component> </component>
<component name="TypeScriptGeneratedFilesManager"> <component name="TypeScriptGeneratedFilesManager">

View File

@ -1,10 +0,0 @@
/* 修改夜间模式背景为灰色 */
@media (prefers-color-scheme: dark) {
:root {
--md-default-bg-color: #2e2e2e; /* 页面主体背景 */
--md-footer-bg-color: #2e2e2e; /* 页脚 */
--md-header-bg-color: #2e2e2e; /* 顶部导航栏 */
--md-code-bg-color: #3a3a3a; /* 代码块背景(可选) */
--md-typeset-color: #e0e0e0; /* 正文字体颜色(增强对比) */
}
}

View File

@ -74,7 +74,7 @@ theme:
name: 切换到夜间模式 name: 切换到夜间模式
- media: "(prefers-color-scheme: dark)" - media: "(prefers-color-scheme: dark)"
scheme: slate scheme: slate
primary: blue primary: grey
accent: blue accent: blue
toggle: toggle:
icon: material/weather-night icon: material/weather-night
@ -124,5 +124,4 @@ markdown_extensions:
extra_javascript: extra_javascript:
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- _static/css/extra.css

View File

@ -1 +0,0 @@
body { font-family: 'Microsoft YaHei', sans-serif; }

View File

@ -1 +0,0 @@
// auto-render.min.js placeholder for offline use

View File

@ -1,9 +0,0 @@
document$.subscribe(() => {
renderMathInElement(document.body, {
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "$", right: "$", display: false}
],
throwOnError: false
});
});

View File

@ -1 +0,0 @@
// katex.min.js placeholder for offline use