├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── lib ├── compile.js ├── file.js ├── help.js ├── stdio.js ├── validate.js ├── version-string.js └── watch.js ├── package.json ├── template ├── style.css └── template.html └── test ├── fixture ├── basic.md ├── firstHeaderIsATitle.md ├── script.js ├── style.css └── template.html ├── test.html ├── test.js └── test.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug* 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # markdown-html [](http://badge.fury.io/js/markdown-html) [](https://travis-ci.org/pwlmaciejewski/markdown-html) 2 | 3 | ## Information 4 | 5 |
Package | markdown-html | 8 |
Description | 11 |Command line markdown to html conversion. You can supply your own template (mustache), styles and scripts. | 12 |
Node Version | 15 |>= 0.10 | 16 |
Ordinary paragraph.
194 |This is a normal paragraph.
200 |This is a code block.
201 | You can write some fancy stuff here!
202 |
This is an example of link.
204 |You can also try some text styles like italics and bold typeface.
205 |Now lets code
...