@pangwu86/markdown-it-disable-url-encode
v1.0.2
Published
Forced decoding image src for non-ascii chars
Downloads
7
Maintainers
Readme
markdown-it-disable-url-encode
本项目修改自 nanyuantingfeng/markdown-it-disable-url-encode 修正了一些 兼容性问题
Getting Started
npm install --save-dev @pangwu86/markdown-it-disable-url-encode
Usage
const md = require("markdown-it")();
md.use(require("@pangwu86/markdown-it-disable-url-encode"), "./")
// md.use(require("@pangwu86/markdown-it-disable-url-encode"), "*")
// md.use(require("@pangwu86/markdown-it-disable-url-encode"), ".")
// md.use(require("@pangwu86/markdown-it-disable-url-encode"), [...])
// md.use(require("@pangwu86/markdown-it-disable-url-encode"), /.../)
const html = md.render("![image.png](图片/image.png)")
// <p><img src="./图片/image.png" alt="image.png" /></p>
// without markdown-it-disable-url-encode plugin :
// <p><img src="%E5%9B%BE%E7%89%87/image.png" alt="image.png" /></p>
API
config rules:
0. undefined
: use rule 1
"*"
: all paths will be decode"."
: relative paths only"./"
: relative paths only , just like"."
string
: asstring[]
to applyrule 5
string[]
: will be apply[].some()
as result for detect if it needs to be decodedREGEXP
: will be apply/^/.test()
as result for detect if it needs to be decoded