docs: unwrap hard-wrapped Markdown to one line per paragraph

Hard line breaks mid-paragraph make docs harder to edit and diff — a
one-word change reflows and re-diffs the whole paragraph. Reflow all
tracked non-vendor Markdown (plus vendor/AGENTS.md) so each prose
paragraph is a single line; soft-wrapping is the editor's job. Fenced
code, tables, and list structure are preserved (wrapped list items fold
to one line per bullet). Documents the convention in AGENTS.md.
This commit is contained in:
Tianyi Cui
2026-06-13 18:39:20 +08:00
parent e98c1c5d42
commit 066f94c7e0
39 changed files with 348 additions and 1206 deletions
+2 -8
View File
@@ -1,13 +1,7 @@
# AGENTS.md — Vendored Packages
This directory contains source-vendored copies of the Cordis framework and its
foundation libraries. See `vendor/README.md` for the manifest, local-modification
log, and the upstream sync procedure.
This directory contains source-vendored copies of the Cordis framework and its foundation libraries. See `vendor/README.md` for the manifest, local-modification log, and the upstream sync procedure.
**Do NOT edit `vendor/*/src/` files casually.** Every local divergence from
upstream must be logged exhaustively in `vendor/README.md` under "Local
modifications." The `vendor/*/tsconfig.json` files are the exception —
regenerated to fit the monorepo build, and they may be touched for type-checking
policy changes (e.g., `noImplicitAny`).
**Do NOT edit `vendor/*/src/` files casually.** Every local divergence from upstream must be logged exhaustively in `vendor/README.md` under "Local modifications." The `vendor/*/tsconfig.json` files are the exception — regenerated to fit the monorepo build, and they may be touched for type-checking policy changes (e.g., `noImplicitAny`).
When changes are unavoidable, follow the sync procedure in `vendor/README.md`.