You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ampersand in … is re-encoded, which doesn't seem to happen for other html encoded characters, for example the output of:
LinkifyHtml("<p>Here is a link and an extra space: google.com </p><p>Here is a link and a greater-than: google.com ></p><p>Here is a link and an ellipsis: google.com …</p>");
Coming back to this, I have found that this happens for almost all encoded symbols. I will write some workaround function to take care of this in the meantime unless anyone can tell me what I'm doing wrong. As far as I can tell, the only encoded symbols that work are the five in @nfrasser/simple-html-tokenizer/src/generated/html5-named-char-refs.ts, though I haven't taken the time to determine whether that is what is making them work...
The ampersand in
…
is re-encoded, which doesn't seem to happen for other html encoded characters, for example the output of:is:
This means that while everything else I render as html looks right, an ellipsis ends up looking like
…
I'd love to know if I'm doing something wrong here.
Thanks!
The text was updated successfully, but these errors were encountered: