diff --git a/docs/_docs/step-by-step/02-liquid.md b/docs/_docs/step-by-step/02-liquid.md index 5de70a28..cd5a9ebf 100644 --- a/docs/_docs/step-by-step/02-liquid.md +++ b/docs/_docs/step-by-step/02-liquid.md @@ -16,7 +16,7 @@ braces: {% raw %}`{{`{% endraw %} and {% raw %}`}}`{% endraw %}. For example: {% raw %} ```liquid {{ page.title }} -``` +``` {% endraw %} Outputs a variable called `page.title` on the page. @@ -34,7 +34,7 @@ braces and percent signs: {% raw %}`{%`{% endraw %} and sidebar content {% endif %} -``` +``` {% endraw %} Outputs the sidebar if `page.show_sidebar` is true. You can learn more about the @@ -48,7 +48,7 @@ and are separated by a `|`. For example: {% raw %} ```liquid {{ "hi" | capitalize }} -``` +``` {% endraw %} Outputs `Hi`. You can learn more about the filters available to Jekyll @@ -63,10 +63,10 @@ Now it's your turn, change the Hello World! on your page to output as lowercase: ...