Jekyll unmodifided code block

less than 1 minute read

While writing django code snippet, I found that it hides double curly brackets( {{}} ).
Since Jekyll uses the Liquid templating language to process templates, Liquid’s template language uses double curly brackets, also.

To show, use raw tag:

 {{ }} 

Done!

ref:

stackoverflow: https://stackoverflow.com/questions/24102498/escaping-double-curly-braces-inside-a-markdown-code-block-in-jekyll

Leave a comment