Skip substring from backslashing #857
Unanswered
antonioValenti-enuan
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I need to skip some substring from being parsed by lib that adds unnecessary backslash.
I'm using markdown to adds custom code that I need to be kept untouched without wrapping it with backtick.
Example:
{% if var === "foobar" %}
Result parsed:
{% if var \=\=\= "foobar" %}
Expected:
{% if var === "foobar" %}
How can I get the expected result?
Beta Was this translation helpful? Give feedback.
All reactions