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
This sounds very strange as this works in your demo.
I am trying to parse
```<span>Hey there...</span>```
but this output to only Hey there and span tags are removed.
This must be because angular sanitizing the generated code by marked parser.
Is there any way to handle this?
The text was updated successfully, but these errors were encountered:
Found. It won't work inline because you are retrieving markdown content from directive element using $elem.text() which will strip html tags. $elem.html() would work, but don't know if that will lead to any consequences. I am sticking with ng-model approach.
This sounds very strange as this works in your demo.
I am trying to parse
but this output to only
Hey there
and span tags are removed.This must be because angular sanitizing the generated code by marked parser.
Is there any way to handle this?
The text was updated successfully, but these errors were encountered: