Docker file for converting internet drafts in markdown to HTML.
To compile markdown to HTML and Text, run the following command from the directory containing the markdown file:
docker run -v `pwd`:/data danielfett/markdown2rfc markdownfile.mdThe output HTML file will show up in the same directory.
If updates are available, pull the updated docker file using
docker pull danielfett/markdown2rfcHint: Add the following line to your .bashrc to run this command with the alias makerfc:
alias makerfc='docker run -v `pwd`:/data danielfett/markdown2rfc'