markdown-it-img-src-render
v0.1.5
Published
Plugin for markdown-it, render image src the way you want
Readme
markdown-it-img-src-render
Render img src the way you want.
Example
const md = require("markdown-it")()
md.use(require("markdown-it-img-src-render", {
render(src: string){
return "file:///E:/Pictures/" + src
}
}))