1.0.15 • Published 7 months ago

convert-md-to-html v1.0.15

Weekly downloads
-
License
MIT
Repository
github
Last release
7 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

7 months ago

1.0.14

7 months ago

1.0.13

7 months ago

1.0.12

7 months ago

1.0.11

10 months ago

1.0.10

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

11 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago