Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'api/android/readme_to_html.sh')
-rwxr-xr-xapi/android/readme_to_html.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/api/android/readme_to_html.sh b/api/android/readme_to_html.sh
new file mode 100755
index 0000000000..8754fc4357
--- /dev/null
+++ b/api/android/readme_to_html.sh
@@ -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 \ No newline at end of file