diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-04-17 12:19:31 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-04-17 12:19:31 +0200 |
commit | 755df738693a480b5a6a99929aa7f648100a8c32 (patch) | |
tree | 68447f63d5446bc010bc6dc2781f532677a0a205 /README.md | |
parent | b1ddaa81f28b8bbc62d6d50526e0935b173099eb (diff) | |
download | md2html-755df738693a480b5a6a99929aa7f648100a8c32.tar.gz md2html-755df738693a480b5a6a99929aa7f648100a8c32.zip |
Add md2html
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/README.md b/README.md index 7a93879..90c0adb 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,32 @@ -# cat +# md2html -This is a simple C program that outputs file content. The magic is that it works -on Linux, *BSD, macOs, Windows thanks to [cosmopolitan](https://github.com/jart/cosmopolitan). +> Markdown to html renderer that works on Windows -I created this repo as a project template for simple ape programs. `/ape` folder -contains https://justine.lol/cosmopolitan/cosmopolitan-amalgamation-0.3.zip and -`/stdio` is copied from cosmopolitan@7ed524ca31bca83fe6700045d346cad3f97b9567 +Fork of [md2html](https://github.com/kukrimate/md2html). The magic is that it works +on Linux, *BSD, macOs, Windows thanks to [cosmopolitan](https://github.com/jart/cosmopolitan). ## Running ```sh -wget https://niedzwiedzinski.cyou/cat.com -chmod +x cat.com -sha256sum cat.com -# 495b3bb169813b07d4c4c43568c6c395e72a952fdf7fe3e5b46bf130cc415af0 +wget https://niedzwiedzinski.cyou/md2htmmd2html.com +chmod +x md2html.com +sha256sum md2html.com +# 0f1477ae8abfbc9c973d5149a63e5fe33d5121d515de2c9379e29bca42736d1c # For zsh or fish -bash -c "./cat.com" +bash -c "./md2html.com" # For everything else -./cat.com +./md2html.com ``` ## Compiling Requirements: -- make -- gcc -- objcopy (from pkg `binutils`) +* make +* gcc +* objcopy (from pkg `binutils`) ``` make |