Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.

v2.0.0

Choose a tag to compare

@amio amio released this 02 Jun 06:25
· 30 commits to master since this release

Breaking Changes

  • first param: file path => markdown

Upgrade

before

const serveReadme = serveMarked('./README.md')

after

const markdown = fs.readFileSync('./README.md', 'utf8')
const serveReadme = serveMarked(markdown)