-
-
Notifications
You must be signed in to change notification settings - Fork 22
Closed
Description
In my use case, I have an HTML file which contains an EJS tag.
The current behavior of the API assume that everything started with <
and closed with >
is a tag. The problem is whenever we try to parse EJS tag, the library treat it as a tag. So, for example <%=title %>, the output will produce:
{
"tag":"'%=title"
...
}
Whenever we try to render back to HTML, the result will be something like <%=title></%=title>
.
Is there any option to ignore certain tags?
Thank you