Seems to be related to this: ___htmlToElements(). It takes a string which is the text, ignoring the fact that HTML entities are not normal characters and should not be interpreted as normal HTML. For example, <
will be interpreted as <
which can open a tag.
Example: https://perchance.org/qzi72h52te#edit
So if an element contains any perchance code, and HTML entities, the HTML entities are essentially lost and become real characters. Which isn’t what you want if you’re trying to present plain-text code to the user.
Definitely does not work as expected at least.
You must log in or register to comment.