diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-18 10:29:25 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-18 10:31:23 +0800 |
| commit | 721536eae99d468299c6d7f5ecd6b7dbeac4c34a (patch) | |
| tree | c9810fbd83630ea57d6e08c3a5d0e0c0d9672de5 /mingling_ci/src/lib.rs | |
| parent | 8ea8e13f1a6b2a2942b78127e23d6783c5188ca5 (diff) | |
feat(ci-new): add markdown code block verification commands
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.
Diffstat (limited to 'mingling_ci/src/lib.rs')
| -rw-r--r-- | mingling_ci/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mingling_ci/src/lib.rs b/mingling_ci/src/lib.rs index 8225bde..77170c6 100644 --- a/mingling_ci/src/lib.rs +++ b/mingling_ci/src/lib.rs @@ -14,6 +14,8 @@ pub mod res; /// Log exporter for CI reports pub mod reporter; +pub(crate) mod markdown; + #[help] pub fn render_fallback(_: EntryFallback) -> String { include_str!("../help.txt").to_string() |
