Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonnyjong/ezal-markdown
A simple, asynchronous markdown renderer.
https://github.com/jonnyjong/ezal-markdown
Last synced: 2 months ago
JSON representation
A simple, asynchronous markdown renderer.
- Host: GitHub
- URL: https://github.com/jonnyjong/ezal-markdown
- Owner: JonnyJong
- License: mit
- Created: 2023-10-16T05:43:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-06T06:54:48.000Z (8 months ago)
- Last Synced: 2024-11-20T05:01:57.645Z (2 months ago)
- Language: TypeScript
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
[中文](./readme_zh.md)
# Ezal Markdown
A simple, asynchronous markdown renderer.## Install
```sh
npm install --save ezal-markdown
```## Use
```js
const { render } = require('ezal-markdown');const markdown_content = `
# Title
Hello World.
`;render(markdown_content).then(console.log);
```## Develop
```sh
git clone git://github.com/JonnyJong/ezal-markdown.git
npm install -g typescript
tsc
```