1.0.0 • Published 3 years ago

slanted v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

slanted

Generate beautiful static documentation for your API from Slate compatible markdown, using Slant.

Installation and use

Install cli using NPM:

npm install -g slanted

slanted openapi.md --inline

or as a library

npm install --save slanted
const { slanted } = require('slanted')

(async function () {
  await slanted({
    filepath: 'openapi.md',
    inline: true
  })
})()