Open dtcblyth opened 10 months ago
Related thread: https://discord.com/channels/1041765492907589683/1175241045265612861
When converting innerContent from D4 to D5, any quotation marks associated with inline HTML attributes are being converted to the ASCII equivalent.
innerContent
For example, this in D4... This is some <span style="color:red">RED</span> text.
<span style="color:red">RED</span>
Will become this in D5... This is some <span style=%22color:red%22>RED</span> text.
<span style=%22color:red%22>RED</span>
This seems to affect all text field types, including RichTextContainer, TextContainer, TextAreaContainer, and CodeContainer.
RichTextContainer
TextContainer
TextAreaContainer
CodeContainer
Related thread: https://discord.com/channels/1041765492907589683/1175241045265612861
Problem:
When converting
innerContent
from D4 to D5, any quotation marks associated with inline HTML attributes are being converted to the ASCII equivalent.For example, this in D4... This is some
<span style="color:red">RED</span>
text.Will become this in D5... This is some
<span style=%22color:red%22>RED</span>
text.This seems to affect all text field types, including
RichTextContainer
,TextContainer
,TextAreaContainer
, andCodeContainer
.