23 lines
620 B
Markdown
23 lines
620 B
Markdown
# Markdown to HTML converter
|
|
|
|
Modified version of [Makudaun](https://github.com/orzklv/makudaun). This version does not wrap the parser output inside HTML, it just produces the HTML fragment and that is it.
|
|
|
|
## Build and Installation
|
|
|
|
```shell
|
|
$ rust-musl-builder
|
|
root@f8512336e6ce:/home/rust/src# cargo build --release
|
|
exit
|
|
$ cp target/x86_64-unknown-linux-musl/release/md_to_html ~/.local/bin/md_to_html
|
|
```
|
|
|
|
## Usage
|
|
|
|
```shell
|
|
md-to-html convert --file /some/path/input.md --to /other/path/output.html
|
|
```
|
|
|
|
## License
|
|
|
|
This project is licensed under the GPL-3.0 License - see the [LICENSE](license) file for details.
|