Skip to content
/ nmd Public
forked from dotmaster/nmd

Command line markdown parser for Node.js

License

Notifications You must be signed in to change notification settings

zefredz/nmd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node Markdown command line parser

node-markdown-cli is a super simpel parser for node. No strings attached. You can use it from the command line or include it as a module with require('nmd')

Version

please install the latest version >=0.2.2

Usage from Command line

Usage is simple:

npm install nmd

then from the command line

nmd filename.md (@see --help to get more options)

Usage as a module##

Usage is simple:

npm install nmd

var MarkdownParser = require('./nmd');
//setup the input file names
fileArr = ['Readme.md']
//optionally set up the output filenames
outArr = ['index.html']

new MarkdownParser().parse(fileArr, outArr, function(){console.log('all done')});

Dependencies

nmd depends on node-markdown and optimist.

Todos

  • nothing ;)

About

Command line markdown parser for Node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.4%
  • Shell 1.6%