Condense and improve examples

This commit is contained in:
EricFromCanada
2021-04-22 17:19:13 -04:00
parent 537f53ef7c
commit e47ea38940
22 changed files with 84 additions and 255 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ Liquid code can be categorized into [**objects**](#objects), [**tags**](#tags),
{{ page.title }}
```
In this case, Liquid is rendering the content of an object called `page.title`, and that object contains the text `Introduction`.
In this case, Liquid is rendering the content of the `title` property of the `page` object, which contains the text `{{ page.title }}`.
## Tags
@@ -41,7 +41,7 @@ The markup used in tags does not produce any visible text. This means that you c
<p class="code-label">Output</p>
```text
Hello Adam!
Hello Adam!
```
Tags can be categorized into three types: