BaumGeist@lemmy.ml to Programmer Humor@lemmy.ml · 1 month agoThe best answer on StackOverflow: Using RegEx to parse HTMLstackoverflow.comexternal-linkmessage-square36fedilinkarrow-up1310arrow-down113
arrow-up1297arrow-down1external-linkThe best answer on StackOverflow: Using RegEx to parse HTMLstackoverflow.comBaumGeist@lemmy.ml to Programmer Humor@lemmy.ml · 1 month agomessage-square36fedilink
minus-squareschnurrito@discuss.tchncs.delinkfedilinkarrow-up1arrow-down1·edit-21 month agoIs this valid HTML? My understanding is that that attribute value needs to be escaped, i.e. <value of \"myattribute\">.
minus-squaremoriquende@lemmy.worldlinkfedilinkarrow-up4·1 month agoThe quote must not be escaped when you start with a single quote. The rest doesn’t. This is valid and tested: <img alt='my "<img>"'>
Is this valid HTML? My understanding is that that attribute value needs to be escaped, i.e.
<value of \"myattribute\">
.The quote must not be escaped when you start with a single quote. The rest doesn’t. This is valid and tested:
<img alt='my "<img>"'>