rst2mdown
v0.1.0
Published
A conversion utility for converting reStructuredText markup to markdown
Downloads
214
Readme
rst2mdown
This is a utility for converting from reStructuredText markup to markdown markup.
Installation
The tool can be installed via npm
:
$ npm install rst2mdown
Or you can download the .zip or .tar.gz, extract and use.
Usage
You will require NodeJS installed. To take in a reStructuredText file and output a markdown one, you would run the following command from the root of the install:
$ bin/rst2mdown -i somefile.rst -o somefile.mdown
License
This code is licensed under the New BSD License and is Copyright (c) 2012 Kitson P. Kelly.
Acknowledgement
This code is possible through documentation and concepts from other projects:
- reStructuredText - Markup Syntax for Python docutils project.
- marked - A markdown parser and compiler that is built for speed.
- PHP Markdown Extra - Extension to markdown syntax for PHP Markdown.