1.3.0 • Published 9 years ago

github-markdown-preview v1.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

github-markdown-preview

Convert markdown to html with inlined styles using generate-github-markdown-css

Programmatic usage

var fs = require('fs')
var convert = require('github-markdown-preview')

var md = fs.readFileSync('path/to/your.markdown')

convert(md, function(err, html) {
  console.log(html)
})

CLI

$ npm install --global github-markdown-preview
$ github-markdown-preview --help
Usage: github-markdown-preview <markdown-file> [options]

outputs html of markdown with github styles to stdout

Options:

  -h, --help     output usage information
  -s, --server   watch file and server changes. This overrides -w and -o.
  -w, --watch    watch markdown file and convert on changes
  -p, --port     optional TCP port to start the server at, defaults to 9999
  -o, --output   optional file path for output. stdout is used by default.
                 required when using --watch.

Live-reload

Watches markdown file and automatically updates preview in browser

$ github-markdown-preview ./README.md -s
Preview now being served at http://localhost:9999

License

MIT