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
However, inserting an ampersand as normal results in it being escaped to &. I couldn't tell if there were some mechanism in the library for preventing that behavior already, but it would be useful to have one.
Describe the solution you'd like
A backwards-slash-based solution seems the most straightforward, like:
@ernieIzde8ski I just looked into this. It looks like escaping is the correct thing to do in this case and there is no good way to implement this without breaking backward compatibility.
Is your feature request related to a problem? Please describe.
In a project, I need to preserve ampersands inside text so that I can have the following nodes:
However, inserting an ampersand as normal results in it being escaped to
&
. I couldn't tell if there were some mechanism in the library for preventing that behavior already, but it would be useful to have one.Describe the solution you'd like
A backwards-slash-based solution seems the most straightforward, like:
Describe alternatives you've considered
Some macro-based solutions came to mind, but none that seemed reasonable.
The text was updated successfully, but these errors were encountered: