MDWEB is a Rust command line tool to convet markdown files .md into an a static .html websites.
_________________________________________
< Feed me markdown, i will make it HTML! >
-----------------------------------------
\
\
_~^~^~_
\) / o o \ (/
'_ - _'
/ '-----' \
Place your .md files into a folder and execute mdewb with
Usage: mdweb --title <TITLE> --input <INPUT_FOLDER> --output <OUTPUT_FOLDER>
Options:
-t, --title <TITLE> Title of website
-i, --input <INPUT_FOLDER> Path to the input folder containing Markdown files
-o, --output <OUTPUT_FOLDER> Path to the output folder where HTML files will be saved
-h, --help Print helpAssuming you have rust and cargo.
$ cargo build --release $ cargo install --path .Suppose you have A.md and B.md, you can make a hyperlink from A to B with [link to B](B.md) inside A. This will reference B's HTML when compiled.
It has support for writing latex equations.
Save a styles.css file into your markdown website folder.
You can add custom HTML tags inside your .md files wrapping them with
```script
(your embbeded code)
```