codescout 0.15.0

High-performance coding agent toolkit MCP server
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Markdown-specific tools: `read_markdown` and `edit_markdown`.

pub(crate) mod edit_markdown;
mod frontmatter;
mod read_markdown;

pub use edit_markdown::EditMarkdown;
pub use read_markdown::ReadMarkdown;

#[cfg(test)]
mod tests;