Merge branch 'strip-unbalanced-attributes' into 'develop'
Fix HTML attribute parsing, discard attributes not strating with a letter See merge request pleroma/pleroma-fe!1834
This commit is contained in:
commit
1d679b59a0
1
changelog.d/html-attribute-parsing.fix
Normal file
1
changelog.d/html-attribute-parsing.fix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix HTML attribute parsing, discard attributes not strating with a letter
|
@ -22,7 +22,7 @@ export const getAttrs = (tag, filter) => {
|
|||||||
.replace(new RegExp('^' + getTagName(tag)), '')
|
.replace(new RegExp('^' + getTagName(tag)), '')
|
||||||
.replace(/\/?$/, '')
|
.replace(/\/?$/, '')
|
||||||
.trim()
|
.trim()
|
||||||
const attrs = Array.from(innertag.matchAll(/([a-z0-9-]+)(?:=("[^"]+?"|'[^']+?'))?/gi))
|
const attrs = Array.from(innertag.matchAll(/([a-z]+[a-z0-9-]*)(?:=("[^"]+?"|'[^']+?'))?/gi))
|
||||||
.map(([trash, key, value]) => [key, value])
|
.map(([trash, key, value]) => [key, value])
|
||||||
.map(([k, v]) => {
|
.map(([k, v]) => {
|
||||||
if (!v) return [k, true]
|
if (!v) return [k, true]
|
||||||
|
Loading…
Reference in New Issue
Block a user