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

https://github.com/noah227/markdown-it-img-src-render


https://github.com/noah227/markdown-it-img-src-render

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# markdown-it-img-src-render

> Render img src the way you want.

## Example

``` ts
const md = require("markdown-it")()

md.use(require("markdown-it-img-src-render", {
render(src: string){
return "file:///E:/Pictures/" + src
}
}))
```