Skip to content

Commit

Permalink
Merge pull request #7 from LeData/master
Browse files Browse the repository at this point in the history
Update readme.md
  • Loading branch information
sskylar authored Mar 24, 2022
2 parents daacef6 + 403f110 commit 57f8890
Showing 1 changed file with 99 additions and 1 deletion.
100 changes: 99 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,102 @@ if + tab >>>
{% $1 %}
```

For a full list, check out the "Snippets" folder.
**Assign**

```
assign + tab >>>
{% assign $1 = $2 %}
```

**Capture**

```
capture + tab >>>
{% capture $1 %}$2{% endcapture %}
```

**Comment**

```
comment + tab >>>
{% comment %}$0{% endcomment %}
```

**Context variable**

```
va + tab >>>
{{ $1 }}
```

**Cycle**

```
cycle + tab >>>
{% cycle $1 %}
```

**Else**

```
else + tab >>>
{% else %}
```

**Elsif**

```
elsif + tab >>>
{% elsif $1 %}
```

**Endcapture**

```
endcapture + tab >>>
{% endcapture %}
```

**Endfor**

```
endfor + tab >>>
{% endfor %}
```

**Endif**

```
endif + tab >>>
{% endif %}
```

**Endraw**

```
endraw + tab >>>
{% endraw %}
```

**For**

```
for + tab >>>
{% for $1 in $2 %}
$3
{% endfor %}
```

For a full list, check out the "Snippets" folder.

0 comments on commit 57f8890

Please sign in to comment.