A Markdown processor built to learn rust; ( and markdown needed some flavour anyway )
- Headings (
#to######) - inline Bold and Italic support ==Highlight==
- Blockquotes with variants:
>β info block (blue)>>β danger block (red)>>>β hint block (green)
- Language Specific Syntax highlighting for code blocks
- Images and horizontal rules
- A custom table syntax (because standard Markdown tables suck):
:::table
heading1, heading2
value1, value2
value3, value4
:::
You can run it in two ways:
cargo run -- <path_to_markdown> <path_to_stylesheet>./rust_down <path_to_markdown> <path_to_stylesheet>


