<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Cdocs Docs</title>
    <link>https://cdocs.cnkrru.top</link>
    <description>A minimal static documentation site generator written in C++, reusing mature components (md4c + nlohmann/json + FlexSearch).</description>
    <language>en</language>
    <lastBuildDate>Sun, 02 Aug 2026 20:10:10 GMT</lastBuildDate>
    <atom:link rel="self" href="https://cdocs.cnkrru.top/rss.xml" type="application/rss+xml" />
    <item>
      <title>Introduction</title>
      <link>https://cdocs.cnkrru.top/en/getting-started/intro.html</link>
      <guid>https://cdocs.cnkrru.top/en/getting-started/intro.html</guid>
      <description>Introduction Welcome to Cdocs — a minimal, data-driven static documentation site generator (SSG) written in C++. It compiles the Markdown sources in docs/ together with the config, navigation, i18n strings and front-end assets in .Cdocs/ into a purely static, offline-capable…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Guide</title>
      <link>https://cdocs.cnkrru.top/en/getting-started/guide.html</link>
      <guid>https://cdocs.cnkrru.top/en/getting-started/guide.html</guid>
      <description>Guide Use as a command-line tool Cdocs is a single-file command-line tool written in C++. Once compiled it is Cdocs.exe (Windows) / Cdocs (Linux·macOS). It reads the config and front-end assets under .Cdocs/ and renders the Markdown under docs/ into a static site in dist/. On…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Commands</title>
      <link>https://cdocs.cnkrru.top/en/generator/commands.html</link>
      <guid>https://cdocs.cnkrru.top/en/generator/commands.html</guid>
      <description>命令行参考 Cdocs 采用 纯子命令 CLI（对标 Hugo / MkDocs），语法： Cdocs [全局旗标] &amp;lt;子命令&amp;gt; [参数] 全局旗标（放在子命令之前） 旗标 说明 -c, --config &amp;lt;目录&amp;gt; 引擎目录（默认 .Cdocs） -s, --source &amp;lt;目录&amp;gt; 内…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Architecture</title>
      <link>https://cdocs.cnkrru.top/en/generator/architecture.html</link>
      <guid>https://cdocs.cnkrru.top/en/generator/architecture.html</guid>
      <description>架构一览 Cdocs 的核心设计是数据驱动 + 引擎收口：所有&amp;quot;引擎&amp;quot;相关文件统一收口在隐藏目录 .Cdocs/ 内，用户侧只维护 docs/（内容）与 dist/（产物）。 整体数据流 flowchart LR C[&amp;quot;config.json&amp;quot;] --&amp;gt; G[&amp;quot;…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Features</title>
      <link>https://cdocs.cnkrru.top/en/generator/features.html</link>
      <guid>https://cdocs.cnkrru.top/en/generator/features.html</guid>
      <description>功能特性 Cdocs 的功能分两类：构建期内建（生成器 C++ 直接产出）与客户端增强（浏览器里懒加载 JS 升级）。 构建期内建 功能 产物 说明 HTML 渲染 各页 .html Markdown → HTML（md4c），TOC / 面包屑 / 上下篇 全文搜…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Versioning</title>
      <link>https://cdocs.cnkrru.top/en/generator/versioning.html</link>
      <guid>https://cdocs.cnkrru.top/en/generator/versioning.html</guid>
      <description>Versioning Cdocs supports multi-version documentation sites: copy your current docs/ into a snapshot like docs-v1/ or docs-v2/, and the build automatically detects it as a historical version, producing current (latest) plus each historical version with a version switcher in th…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>API Reference</title>
      <link>https://cdocs.cnkrru.top/en/reference/api.html</link>
      <guid>https://cdocs.cnkrru.top/en/reference/api.html</guid>
      <description>API Reference Cdocs is a CLI-driven static documentation site generator with no public C++ library API. All extensibility is exposed through three layers: Layer Location Purpose Config .Cdocs/config/config.json + route.json Site metadata, feature toggles, navigation Theme .Cdo…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Themes</title>
      <link>https://cdocs.cnkrru.top/en/reference/themes.html</link>
      <guid>https://cdocs.cnkrru.top/en/reference/themes.html</guid>
      <description>Theme Development A Cdocs theme is a folder. The engine only generates data (nav tree, TOC, body, pager…); the page skeleton and all front-end assets come from the theme. Copy a theme folder, tweak a few lines, and the whole look changes — this is Cdocs&amp;#x27; theme contrac…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Plugins</title>
      <link>https://cdocs.cnkrru.top/en/reference/plugins.html</link>
      <guid>https://cdocs.cnkrru.top/en/reference/plugins.html</guid>
      <description>Plugin Development Plugins let Cdocs extend the build pipeline without touching the engine. The contract is external process + JSON file exchange: the builder fires hooks at key points, invokes your script (any language), and the script participates by reading/writing JSON. Ze…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Render Pipeline</title>
      <link>https://cdocs.cnkrru.top/en/generator/pipeline.html</link>
      <guid>https://cdocs.cnkrru.top/en/generator/pipeline.html</guid>
      <description>Render Pipeline Here, &amp;quot;render pipeline&amp;quot; means the build pipeline that turns the docs/ sources into a deployable static site. It is &amp;quot;generator compile + three post-processing steps&amp;quot;, all chained by build.cmd / build.sh. Overview flowchart LR SRC[&amp;quot;docs/*…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Render Loop</title>
      <link>https://cdocs.cnkrru.top/en/generator/render.html</link>
      <guid>https://cdocs.cnkrru.top/en/generator/render.html</guid>
      <description>Render Loop The render loop is the process by which a UI library continuously copies the Canvas buffer onto the screen surface. Two phases Logic update: process input, advance state. Draw: call primitives like canvas_set_pixel to refresh the buffer, then blit to the window. A …</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Markdown</title>
      <link>https://cdocs.cnkrru.top/en/tests/test-markdown.html</link>
      <guid>https://cdocs.cnkrru.top/en/tests/test-markdown.html</guid>
      <description>Markdown 渲染测试 本页覆盖常用 Markdown 语法，验证生成器的渲染正确性。看到的效果即最终产物效果。 标题层级 H1 H2 H3 H4 H5 文本样式 粗体、斜体、粗斜体、删除线、行内代码、Ctrl+K。 引用 单层引用。 嵌套引…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Mermaid</title>
      <link>https://cdocs.cnkrru.top/en/tests/test-mermaid.html</link>
      <guid>https://cdocs.cnkrru.top/en/tests/test-mermaid.html</guid>
      <description>Mermaid 图表测试 本页验证 Mermaid 图表渲染（客户端懒加载 mermaid.min.js）。图表写在与代码块相同的围栏里，语言标记为 mermaid。 流程图（flowchart） flowchart TD A[开始] --&amp;gt; B{有 .md 吗?} B -- 是 --&amp;gt; C[解析 front matter]…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>KaTeX</title>
      <link>https://cdocs.cnkrru.top/en/tests/test-katex.html</link>
      <guid>https://cdocs.cnkrru.top/en/tests/test-katex.html</guid>
      <description>KaTeX 公式测试 本页验证数学公式渲染（客户端懒加载 KaTeX + auto-render）。行内公式用 $...$，块级公式用 $$...$$。 行内公式 质能方程：$E = mc^2$ 欧拉恒等式：$e^{i\pi} + 1 = 0$ 黄金比例：$\varphi = \frac{1 + \sqrt{5}}{2}$ 组…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Lightbox</title>
      <link>https://cdocs.cnkrru.top/en/tests/test-lightbox.html</link>
      <guid>https://cdocs.cnkrru.top/en/tests/test-lightbox.html</guid>
      <description>Image Lightbox Test This page verifies the PhotoSwipe 5 lightbox feature: click any content image to view it fullscreen, with gallery navigation, pinch/double-click zoom, ←/→ keyboard switching, and Esc to close. Single Image (click to enlarge) Click the image below → fu…</description>
      <pubDate>Sun, 02 Aug 2026 20:10:08 GMT</pubDate>
    </item>
    <item>
      <title>Cdocs 0.1 发布：一个 C++ 写的静态文档站生成器</title>
      <link>https://cdocs.cnkrru.top/en/blog/hello-cdocs.html</link>
      <guid>https://cdocs.cnkrru.top/en/blog/hello-cdocs.html</guid>
      <description>This is the English version of the sample post &amp;quot;Cdocs 0.1 发布：一个 C++ 写的静态文档站生成器&amp;quot;. It is used to verify the Cdocs blog stream feature with bilingual support.</description>
      <pubDate>Sat, 01 Aug 2026 00:00:00 GMT</pubDate>
    </item>
  </channel>
</rss>
