This is minimal markdown to html parser which can interprete any markdown input and generate a html file from its content.
npm install cnvrtdwn_jsshell
cnvrtdwn -i ./path/to/my/README.md -o ./README.html
`
---
Installation
1. Install the package global or to your devDependencies
`shell
$ npm install -g | --save | --save-dev cnvrtdwn-js
`
$3
Clone this repo to your local machine using https://github.com/comcy/cnvrtcrwlr_js.git
$3
Install npm packages
`shell
$ npm install
`
---
Features
Planned features:
1. More intelligent argument parsing
2. Improve docs
3. Add tests
4. Error handling
5. Preparation for static site generator
Usage
If you want to use the tool during a build process modify your package.json by adding a cnvrtdwn script to the scripts section
package.json
`json
...
"scripts": {
...
"cnvrtdwn": "index.js"
},
...
``