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,6 +66,16 @@ Now it's your turn, change the Hello World! on your page to output as lowercase:
```
{% endraw %}
To get our changes processed by Jekyll we need to add [front matter](03-front-matter/) to the top of the page:
```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.