Skip to content

Commit 3a661da

Browse files
authored
don't "inline" trim lang variants of freetext tags
fixes #11276
1 parent da3d6b9 commit 3a661da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/util/clean_tags.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function utilCleanTags(tags) {
1717
}
1818

1919
function skip(k) {
20-
return /^(description|note|fixme|inscription)$/.test(k);
20+
return /^(description|note|fixme|inscription)(:.+)?$/.test(k);
2121
}
2222

2323
if (skip(k)) return v;

0 commit comments

Comments
 (0)