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

https://github.com/architect/markdown-it-arc-static-img

Adds arc static paths to img tag src attributes when parsing markdown
https://github.com/architect/markdown-it-arc-static-img

Last synced: 5 months ago
JSON representation

Adds arc static paths to img tag src attributes when parsing markdown

Awesome Lists containing this project

README

          

# markdown-it-arc-static-img
Adds arc static paths to img tag src attributes when parsing markdown

## Usage

```js
const arcStaticImg = require('markdown-it-arc-static-img')
const md = require('markdown-it')()
.use(arcStaticImg)
const imgMD = '![My Image](myimage.jpg)'
const result = md.render(imgMD)
```