markdown-tool
markdown-tool is a powerful command-line utility for converting Markdown documents to various formats including HTML, LaTeX, and abstract syntax tree (AST) representations.
Features
- Multiple Output Formats: Convert Markdown to HTML, LaTeX, JSON-based AST, and YAML-based AST formats
- LaTeX Support: Generate LaTeX documents with configurable table styles and code highlighting
- Configurable Output: Customize formatting options for each output format
- Lightweight CLI: Zero-dependency binary, easily scriptable in CI/CD workflows
- Round-trip Capable: Parse and regenerate Markdown with consistent formatting
Installation
Install via crates.io (requires Rust and Cargo):
Alternatively, download pre-built packages:
- Debian (
.deb):
Usage
The tool uses a modern subcommand structure for better organization:
Usage: markdown-tool convert-to [OPTIONS] <COMMAND>
Commands:
markdown Convert to Markdown format
html Convert to HTML format
latex Convert to LaTeX format
ast-json Convert to AST JSON format
ast-yaml Convert to AST YAML format
Options:
-f, --from <FROM> Input format: markdown, ast-json, ast-yaml [default: markdown]
-h, --help Print help
Quick Start
Most common use case (Markdown input is default):
|
# Output: <h1>Hello World</h1>
Supported Formats
| Format | Input | Output | Description |
|---|---|---|---|
| markdown | ✅ | ✅ | Standard Markdown text |
| html | ❌ | ✅ | HTML-formatted text |
| latex | ❌ | ✅ | LaTeX document format |
| ast-json | ✅ | ✅ | JSON-formatted abstract syntax tree |
| ast-yaml | ✅ | ✅ | YAML-formatted abstract syntax tree |
Examples
Basic Conversions
Convert Markdown to HTML (default input format):
Convert Markdown to LaTeX with custom formatting:
Convert Markdown to JSON AST:
Advanced Usage
Convert JSON AST back to Markdown:
Convert YAML AST to Markdown with custom width:
Pretty-print Markdown with custom formatting:
Format-Specific Options
Markdown Output
HTML Output
LaTeX Output
Available LaTeX options:
- Table styles:
tabular(default),longtabu,booktabs - Code styles:
verbatim(default),listings,minted
LaTeX Package Requirements
Depending on the options used, you may need these LaTeX packages:
hyperref- for links (\href)graphicx- for images (\includegraphics)ulem- for strikethrough (\sout)booktabs- if using--table-style booktabslongtabu- if using--table-style longtabulistings- if using--code-style listingsminted- if using--code-style minted(requires Python + Pygments)
📚 Documentation
Contributing
Contributions, issues, and feature requests are welcome! Feel free to open an issue or submit a pull request on GitHub.
License
Dual-licensed under MIT. See LICENSE for details.