Auto-generate more code samples, plus other fixes and improvements

This commit is contained in:
EricFromCanada
2019-09-09 23:01:21 -04:00
parent ea6b176363
commit bea649dc63
13 changed files with 58 additions and 50 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ Liquid code can be categorized into [**objects**](#objects), [**tags**](#tags),
<p class="code-label">Output</p>
```text
Introduction
{{ page.title }}
```
In this case, Liquid is rendering the content of an object called `page.title`, and that object contains the text `Introduction`.
@@ -79,5 +79,5 @@ Multiple filters can be used on one output. They are applied from left to right.
<p class="code-label">Output</p>
```text
Hello Adam!
{{ "adam!" | capitalize | prepend: "Hello " }}
```