Goeter is a simple Markdown parser package for Node.js.
To install Goeter, you can use npm:
npm install goeter
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.
This project is licensed under the MIT License - see the LICENSE file for details.