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
I have followed the documentation for resolving custom entities. I am using ondoctype event to fetch the custom entities. So far it is working fine. But one of my custom entity name contains character '-' that your library doesn't permits.
Replacing the following code entity = number+letter+"#" with entity = number+letter+"#-" resolves my issue.
Please do this modification in your library.
The text was updated successfully, but these errors were encountered:
I have followed the documentation for resolving custom entities. I am using ondoctype event to fetch the custom entities. So far it is working fine. But one of my custom entity name contains character '-' that your library doesn't permits.
Replacing the following code
entity = number+letter+"#"
withentity = number+letter+"#-"
resolves my issue.Please do this modification in your library.
The text was updated successfully, but these errors were encountered: