Update 03-front-matter.md (#7996)

Merge pull request 7996
This commit is contained in:
dgolant 2020-02-06 03:28:10 -05:00 committed by GitHub
parent 68e4e901c2
commit a58d71a311
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -44,6 +44,16 @@ title: Home
```
{% endraw %}
Note that in order for Jekyll to process any liquid tags on your page,
you _must_ include front matter on it. The most minimal snippet of front matter
you can include is:
```liquid
---
---
```
You may still be wondering why you'd output it this way as it takes
more source code than raw HTML. In this next step, you'll see why we've
been doing this.