From 45f5facbedb316489e4284895db6518410faacd6 Mon Sep 17 00:00:00 2001 From: Frank Taillandier Date: Sat, 17 Aug 2019 22:54:58 +0200 Subject: [PATCH] docs: fix broken link [ci-skip] --- docs/_docs/step-by-step/02-liquid.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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: ...

{{ "Hello World!" | downcase }}

... -``` +``` {% endraw %} -To get our changes processed by Jekyll we need to add [front matter](03-front-matter/) to the top of the page: +To get our changes processed by Jekyll we need to add [front matter](../03-front-matter/) to the top of the page: ```markdown ---