mirror of https://github.com/adamdruppe/arsd.git
implement hack described in comments [!]
This commit is contained in:
parent
e44b740688
commit
af2ee83505
1
dom.d
1
dom.d
|
@ -3851,6 +3851,7 @@ class Document : FileResource {
|
||||||
|
|
||||||
if(!strict && pos < data.length && data[pos] == '<') {
|
if(!strict && pos < data.length && data[pos] == '<') {
|
||||||
// this is the broken tag that doesn't have a > at the end
|
// this is the broken tag that doesn't have a > at the end
|
||||||
|
data = data[0 .. pos] ~ ">" ~ data[pos.. $];
|
||||||
// let's insert one as a hack
|
// let's insert one as a hack
|
||||||
goto case '>';
|
goto case '>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue