Closed dalyIsaac closed 5 years ago
The problem isn't with the actual source code - it's the sample HTML given to the parser.
What was given was:
`<p id="p:{28216e73-1f0a-05fd-25c5-a04844147e70}{19}" ` +
`style="color:#595959;font-style:italic;margin-top:0pt;margin-bottom:0pt">` +
`Quote` +
`</p>`
The lack of a space between id="p:{28216e73-1f0a-05fd-25c5-a04844147e70}{19}"
and ` +
caused the parser to ignore the following attributes, as it expected the lexer to return the next type to be "space"
.
The inline styling for the below HTML is not found in the rendered React output.