1.0.0 • Published 2 years ago
goeter v1.0.0
Goeter
Goeter is a simple Markdown parser package for Node.js.
Installation
To install Goeter, you can use npm:
npm install goeter
Usage
const parseMarkdown = require('goeter');
const markdown = `
# Heading 1
## Heading 2
### Heading 3
* List item 1
* List item 2
Paragraph text.
`;
const html = parseMarkdown(markdown);
console.log(html);
This will parse the Markdown input and return the corresponding HTML.
License
This project is licensed under the MIT License - see the LICENSE file for details.
1.0.0
2 years ago