Forge
markdown0d405cb9
1# Writing (org site)
2
3Markdown sources for **https://ai-guiders.github.io/writing/** (EN) and **/ru/writing/** (RU).
4
5## Add an article
6
71. Create `en/your-slug.md` and `ru/your-slug.md` with the **same `slug`** in front matter.
82. Run from repo root:
9
10```bash
11dotnet script tools/build-writing.csx
12```
13
143. Commit both `src/writing/**` and generated `docs/writing/**` (and `docs/ru/writing/**`).
15
16## Front matter
17
18```yaml
19---
20slug: your-slug
21title: "Page title"
22description: "One line for meta and index cards."
23date_display: "May 2026"
24order: 10
25tags:
26 - mcp
27 - agents
28---
29```
30
31- **order** — lower appears first on the index (higher numbers = newer on top if you use ascending sort — check build script; KDGIO uses higher order for newer items).
32- **tags** — optional; generates tag pages under `writing/tag/`.
33
34Body is standard Markdown (Markdig with advanced extensions).
35
36## Nav
37
38Generated pages use `articles.css` and org nav (About, Open stack, Writing, Handbook, GitHub). Landing pages: edit `tools/gen_pages.py` and run `python tools/gen_pages.py`.
39
View only · write via MCP/CIDE