I am using Jekyll to post blogs. When I write "{%...%}" in my markdown files, it seems that the "{%...%}" will be parsed by Liquid. But sometimes that is not what I want, and may cause errors. So what's the proper way to include texts like "{%...%}" in my post content(the .md file)?
I checked the Liquid docs and learned I can use the Block Tag {% raw %} ... {% end raw %}
to include raw text between. However, I don't think this a good idea. Because if the markdown file was not parsed by Liquid (e.g., in some environment other than Jekyll), this will leave unused {% raw %} in my text.
Correct me if I said something wrong.
P.S.: I use GitHub Pages for hosting and they disable plugins.