# dogfen ## usage Add the below oneliner to an existing markdown document: ```html
# Header 1 ## Header 2 |col 1 | col 2 | |---|---| |cell 1 | cell 2 | ``` see [demo](https://gh.dayl.in/dogfen/demo.html) ## converter You could define a shell helper function to quickly convert a markdown doc to a dogfen doc. ```sh md2dogfen() { printf "%s\n\n%s\n" \ '
' \ "$(< "$1")" } ``` ```sh md2dogfen README.md > README.dogfen.html ``` ## related projects - [texme](https://github.com/susam/texme) - [zeromd](https://github.com/zerodevx/zero-md)