slanted

Use Slant to generate HTML from Slate-conforming markdown.

Usage no npm install needed!

<script type="module">
  import slanted from 'https://cdn.skypack.dev/slanted';
</script>

README

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
  })
})()