[android, tools] Small script to convert .md to .html and open result in browser.

Suitable for "write-and-check" approach.
This commit is contained in:
Dmitry Kunin 2013-06-12 19:02:30 +03:00 committed by Alex Zolotarev
parent 4857533099
commit d514a2ac9f

11
api/android/readme_to_html.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
set -e -u -x
## This script converts .md file to .html and opens it in browser.
## Please install next gems to use it:
## gem install redcarpet
## gem install github-markup
github-markup README.md > README.html
open README.html