feat: 新增 VitePress 电子书网站,部署到 Cloudflare Pages

将笔记转化为精美的 VitePress 静态电子书网站:

- site/ 工程目录:构建脚本从 chXX/README.md + .c 源码 + images/ 幂等生成
  19 个章节页 + 96 个源码页(每个 .c 独立页面,Shiki 语法高亮)
- 构建脚本零依赖,处理 3 种代码链接形态(同章/跨章/绝对URL)+
  110 处图片路径转换,保持原 Markdown 结构不变
- 首页 hero 用 AI 生成的网络主题封面图,配套 favicon 多尺寸
- 中文衬线正文排版 + GitHub 风格代码主题 + 本地全文搜索
- GitHub Actions + wrangler 自动部署到 Cloudflare Pages
- 域名 tcp.riba2534.cn

原 chXX/ 目录与根 README 保持不动,网站内容每次构建从源重新生成。
This commit is contained in:
riba2534
2026-06-28 13:20:32 +08:00
parent 5625eea472
commit c6ddea28fe
16 changed files with 3012 additions and 0 deletions

32
site/index.md Normal file
View File

@@ -0,0 +1,32 @@
---
layout: home
hero:
name: TCP/IP 网络编程
text: 学习笔记电子书
tagline: 19 章笔记 · 96 个 C 源码 · 在线浏览与语法高亮
image:
src: /cover.png
alt: TCP/IP 网络编程
actions:
- theme: brand
text: 开始阅读
link: /ch01/
- theme: alt
text: GitHub 仓库
link: https://github.com/riba2534/TCP-IP-NetworkNote
features:
- icon: 📖
title: 19 章完整笔记
details: 从套接字基础到 epoll、多线程、HTTP 服务器实现,覆盖 TCP/IP 网络编程核心概念
- icon: 💻
title: 96 个源码在线看
details: 每个 .c 文件独立页面GitHub 风格语法高亮,含习题代码
- icon: 🔍
title: 全文搜索
details: 本地索引,离线可用,快速定位知识点
- icon: ✨
title: 优雅排版
details: 中文衬线正文、代码行号、响应式布局,阅读体验舒适
---