aboutsummaryrefslogtreecommitdiff
path: root/mingling_ci/src/markdown
Commit message (Collapse)AuthorAgeFilesLines
* chore: reorganize dev tools into dev/ directory and consolidate configsHEADmain魏曹先生3 hours3-702/+0
| | | | | | | | | | Move CI, dev tools, and configs from root-level scattered locations into a unified `dev/` directory structure. Update all references across build scripts, documentation, and editor configurations. Also consolidate editor config generation into build.rs for automated synchronization of rust-analyzer settings across VS Code and Zed.
* refactor(ci-new): extract shared task progress bar helper魏曹先生22 hours1-11/+3
|
* feat(ci-new): add markdown structural comparison commands魏曹先生23 hours1-0/+203
| | | | | | | Add `markdown-compare` and `markdown-compare-all` commands to verify that translated docs maintain the same structure as the reference. Compare heading levels, code fences, lists, quotes, and other structural elements while allowing text differences.
* feat(ci-new): report per-file results魏曹先生23 hours1-9/+25
| | | | | | Add per-file report generation for markdown checks using the reporter module, grouping outcomes by source file and exporting ok or error results with snake_case item names.
* feat(ci-new): add markdown code block verification commands魏曹先生23 hours2-0/+491
Add `markdown-check` and `markdown-check-all` commands to verify Rust code blocks in markdown files. Code blocks are compiled as test projects, sharing temporary crates based on dependency configuration for parallel execution.