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

readme_to_html.sh « android « api - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8754fc4357db8ae09d42e3e6a419941b38bb9cdf (plain)
1
2
3
4
5
6
7
8
9
10
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