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
<!-- some comment --> emits <!--– some comment – -->, <!- some comment -> emits <!--- some comment ---> and <! some comment > emits <!-- some comment -->. Is this intended behaviour? If so, why?
The library doesn't currently understand the <!-- --> syntax, so it ends up being parsed as markdown. The easiest fix would likely be to filter out any HTML comments using a regex.
<!-- some comment -->
emits<!--– some comment – -->
,<!- some comment ->
emits<!--- some comment --->
and<! some comment >
emits<!-- some comment -->
. Is this intended behaviour? If so, why?The reason I ask is because of my confusion using a downstream library (see: cryogen-project/cryogen-core#76 )
The text was updated successfully, but these errors were encountered: