using "raw" tag in jekyll to view liquid tags
- For example in a post I mentioned how to enable \(\LaTeX\) in jekyll
- at 4th step i said include the below tag.
{% include mathjax.html %}
- jekyll did not allow me to
include
above line intocode blocks
in post. - that is where I found this
raw
tag to be very helpful. use as below
{% raw %}
{% include mathjax.html %}
{% endraw %}
Alternatively, we can disable liquid processing (jekyll v4.0+) in the post’s front matter use
render_with_liquid: false
- see more here.