Skip to content

Commit c172c9e

Browse files
authored
fix(cleanupIds): handle uri encoded references (#1880)
1 parent 6a814cd commit c172c9e

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

plugins/cleanupIds.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,11 @@ exports.fn = (_root, params) => {
215215
}
216216
}
217217
for (const id of ids) {
218-
let refs = referencesById.get(id);
218+
const decodedId = decodeURI(id);
219+
let refs = referencesById.get(decodedId);
219220
if (refs == null) {
220221
refs = [];
221-
referencesById.set(id, refs);
222+
referencesById.set(decodedId, refs);
222223
}
223224
refs.push({ element: node, name });
224225
}
@@ -261,7 +262,7 @@ exports.fn = (_root, params) => {
261262
if (value.includes('#')) {
262263
// replace id in href and url()
263264
element.attributes[name] = value.replace(
264-
`#${id}`,
265+
`#${encodeURI(id)}`,
265266
`#${currentIdString}`
266267
);
267268
} else {

test/plugins/cleanupIds.25.svg

+21
Loading

0 commit comments

Comments
 (0)