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

https://github.com/markedjs/marked-extension-template

A simple marked extension template
https://github.com/markedjs/marked-extension-template

Last synced: 8 months ago
JSON representation

A simple marked extension template

Awesome Lists containing this project

README

          

# TODO:

- [ ] Replace information in `/README.md`
- [ ] Replace name in `/rollup.config.js`
- [ ] Replace information in `/package.json`
- [ ] Write extension in `/src/index.js`
- [ ] Write tests in `/spec/index.test.js`
- [ ] Uncomment release in `/.github/workflows/main.yml`

# marked-|this-extension|

# Usage

```js
import {marked} from "marked";
import |thisExtension| from "marked-|this-extension|";

// or UMD script
//
//

const options = {
// |default options|
};

marked.use(|thisExtension|(options));

marked.parse("|example markdown|");
//

|example html|


```

## `options`