Introduce frontmatter in step 2 (#7704)

Merge pull request 7704
This commit is contained in:
David Kennell 2019-06-28 11:27:59 -05:00 committed by jekyllbot
parent 2265e82181
commit 24f1978412
1 changed files with 13 additions and 3 deletions

View File

@ -66,9 +66,19 @@ Now it's your turn, change the Hello World! on your page to output as lowercase:
``` ```
{% endraw %} {% endraw %}
It may not seem like it now, but much of Jekyll's power comes from combining To get our changes processed by Jekyll we need to add [front matter](03-front-matter/) to the top of the page:
Liquid with other features.
In order to see the changes from `downcase` Liquid filter, we will need to add front matter. ```markdown
---
# front matter tells Jekyll to process Liquid
---
```
Our "Hello World!" will now be downcased on render.
It may not seem like it now, but much of Jekyll's power comes from combining
Liquid with other features.
In order to see the changes from `downcase` Liquid filter, we will need to add front matter.
That's next. Let's keep going. That's next. Let's keep going.