forked from organicmaps/organicmaps
[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:
parent
4857533099
commit
d514a2ac9f
1 changed files with 11 additions and 0 deletions
11
api/android/readme_to_html.sh
Executable file
11
api/android/readme_to_html.sh
Executable 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
|
Loading…
Add table
Reference in a new issue