python - How to escape double brackets in Hyde markdown syntax -
when using hyde static webpage generator have python code double brackets
{% syntax %} var[["some-string"]] = foo {% endsyntax %}
this renders oddly because [["foo"]]
special hyde markdown.
normal escaping (e.g. through use of html escape characters) fails because we're inside of syntax block.
how 1 escape characters within hyde syntax block?
Comments
Post a Comment