1.0.15 • Published 6 months ago

convert-md-to-html v1.0.15

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

convert-md-to-html

cli-available node version npm version downloads count size license github-ci

🔨 Convert Markdown file to HTML file

Give a ⭐️ if this project helped you!

Usage

const { buildHTML } = require('convert-md-to-html');
const markdownText = `# title
- item 1
- item 2
`;
const html = buildHTML(markdownText);
console.log(html);

Output:

<h1>title</h1>
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>

CLI

Installation:

npm install -g convert-md-to-html
convert-md-to-html README.md
# Created: README-2024-08-01-15-30-47.html

🤝 Contributing

Contributions, issues and feature requests are welcome! Feel free to check issues page.

Related

Credits

Thanks to the authors of showdown

License

The MIT License @ 2019

1.0.15

6 months ago

1.0.14

6 months ago

1.0.13

6 months ago

1.0.12

6 months ago

1.0.11

9 months ago

1.0.10

9 months ago

1.0.9

9 months ago

1.0.8

9 months ago

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

10 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago