From 8940ad65b1d590263b68eb904ad9b70e8e534aee Mon Sep 17 00:00:00 2001 From: Nick Coish Date: Fri, 14 May 2021 15:11:29 -0400 Subject: [PATCH] Fix typo in 02-liquid.md (#8637) --- docs/_docs/step-by-step/02-liquid.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/step-by-step/02-liquid.md b/docs/_docs/step-by-step/02-liquid.md index 00fb5904..012a8c63 100644 --- a/docs/_docs/step-by-step/02-liquid.md +++ b/docs/_docs/step-by-step/02-liquid.md @@ -18,7 +18,7 @@ For example, {% raw %}`{{ page.title }}`{% endraw %} displays the `page.title` v ## Tags Tags define the logic and control flow for templates. Use curly -braces and percent signs for objects: {% raw %}`{%`{% endraw %} and +braces and percent signs for tags: {% raw %}`{%`{% endraw %} and {% raw %}`%}`{% endraw %}. For example: @@ -98,4 +98,4 @@ When you reload your browser, you should see `hello world!`. Much of Jekyll's power comes from combining Liquid with other features. Add frontmatter to pages to make Jekyll process the Liquid on those pages. -Next, you'll learn more about frontmatter. \ No newline at end of file +Next, you'll learn more about frontmatter.