Project: codepediaorg.github.io
You need to place {% raw %}
and {% endraw %}
tags around your code. Since Jekyll 4.0 , you can add render_with_liquid: false
in your front matter to disable Liquid entirely for a particular document. Use the standard Code snippet highlighting from Jekyll:
{% highlight liquid %}
{% raw %}
{% if page.categories[0] != "snippets" %}
{% include promote-bookmarks.dev.html %}
{% endif %}
{% endraw %}
{% endhighlight %}
Or place it in markdown code markers:
liquid
{% if page.categories[0] != "snippets" %}
{% include promote-bookmarks.dev.html %}
{% endif %}
Reference -
https://jekyllrb.com/docs/liquid/tags/
Shared ❤️ from Codever. 👉 use the copy to mine functionality to add it to your personal snippets collection.
Top comments (0)