A mashup of http://lab.hakim.se/reveal-js and http://remarkjs.com
- CLI that processes a MarkDown file and emits an HTML presentation
Install remarkable
:
pip install remarkable
Run the cli:
remarkable.
Usage:
remarkable [options] remark <path-to-markdown-file> [<title>]
remarkable [options] reveal <path-to-markdown-file> <title>
remarkable -h | --help
Options:
--debug Debug.
-h --help Show this screen.
Example:
$ remarkable remark application-to-platform.md
INFO:remarkable.cli:Created remark.html
$ remarkable reveal application-to-platform.md application-to-platform
INFO:remarkable.cli:Created application-to-platform/index.html
Install development requirements:
pip install -r requirements.txt
Tests can then be run with:
nosetests
Lint the project with:
flake8 changes tests
Generate the documentation with:
cd docs && PYTHONPATH=.. make singlehtml
To monitor changes to Python files and execute flake8 and nosetests automatically, execute the following from the root project directory:
stir