MadDoc
Simple Markdown to HTML converter. In comparison to standard, built-in CLI util it generates a nice-looking little-bit styled HTML.
DISCONTINUED I'm quiet happy with pandoc nowdays.
Installation
$ gem install maddoc
Usage
maddoc my-file.md > my-file.html
MadDoc was mainly written for very own personal purposes of "sending" a nice-looking versions of documentation files written in MarkDown for my colleagues. Once markdown is converted in a nice looking HTML, it's not a problem to convert it to PDF if you would like to:
for file in *.md ; do
  file = $(basename $file .md)
  maddoc $file.md > $file.html
  wkhtmltodpf $file.html $file.pdf
  rm $file.html
done
TODOs
- read options from .maddocfile
- allow specify path of custom template
- generate TOC
- process more than one file in a row (+ allow generate index of files)
- provide alternative built-in theme (light, dark)
Contributing
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Added some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request