Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 532 Bytes

readme.md

File metadata and controls

33 lines (25 loc) · 532 Bytes

Raml to Markdown

A RAML to markdown converter made in nodejs

Install

$ npm install -g ramltomd

Usage

Comand line

$ ramltomd -i path/to/filename.raml > path/to/output.md
Help
 Usage: ramltomd [options]

  Options:
    -h, --help          output usage information
    -V, --version       output the version number
    -i, --input [path]  path for raml file

As a library

var ramlToMd = require('ramltomd');
ramlToMd.render(path).then(function(result){
	
});