Skip to content

Commit bb41a9f

Browse files
authoredJul 8, 2022
fix: decode image src so that rollup can process it (#933)
1 parent 1e9a7ac commit bb41a9f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎src/node/markdown/plugins/image.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ export const imagePlugin = (md: MarkdownIt) => {
77
const imageRule = md.renderer.rules.image!
88
md.renderer.rules.image = (tokens, idx, options, env, self) => {
99
const token = tokens[idx]
10-
const url = token.attrGet('src')
11-
if (url && !EXTERNAL_URL_RE.test(url) && !/^\.?\//.test(url)) {
12-
token.attrSet('src', './' + url)
10+
let url = token.attrGet('src')
11+
if (url && !EXTERNAL_URL_RE.test(url)) {
12+
if (!/^\.?\//.test(url)) url = './' + url
13+
token.attrSet('src', decodeURIComponent(url))
1314
}
1415
return imageRule(tokens, idx, options, env, self)
1516
}

0 commit comments

Comments
 (0)
Please sign in to comment.