parent
2265e82181
commit
24f1978412
|
@ -66,9 +66,19 @@ Now it's your turn, change the Hello World! on your page to output as lowercase:
|
|||
```
|
||||
{% endraw %}
|
||||
|
||||
It may not seem like it now, but much of Jekyll's power comes from combining
|
||||
Liquid with other features.
|
||||
To get our changes processed by Jekyll we need to add [front matter](03-front-matter/) to the top of the page:
|
||||
|
||||
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.
|
||||
|
|
Loading…
Reference in New Issue