Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```