Docker file for converting internet drafts in markdown to HTML.
The resulting docker image assumes a file layout as in https://github.com/oauthstuff/draft-oauth-rar
To compile markdown to HTML and Text, run the following command from the directory containing the "main.md" file:
docker run -v `pwd`:/data danielfett/markdown2rfcThe output files (.html and .txt) will show up in the same directory.
Hint: Add the following line to your .bashrc to run this command with the alias makerfc:
alias makerfc='docker run -v `pwd`:/data danielfett/markdown2rfc'