mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-19 06:20:38 -07:00
Updated Whitespace Control (markdown)
+3
-5
@@ -7,9 +7,8 @@ and whitespace if there's an indentation.
|
||||
For example:
|
||||
|
||||
```liquid
|
||||
{% assign author = "harttle" %}
|
||||
{% author = "harttle" %}
|
||||
{{ author }}
|
||||
|
||||
```
|
||||
|
||||
Outputs:
|
||||
@@ -17,15 +16,14 @@ Outputs:
|
||||
```
|
||||
|
||||
harttle
|
||||
|
||||
```
|
||||
|
||||
You can include hyphens in your tag syntax (`{{-`, `-}}`, `{%-`, `-%}`) to
|
||||
strip whitespace from left or right. For example:
|
||||
|
||||
```liquid
|
||||
{%- assign author = "harttle" -%}
|
||||
{{- author -}}
|
||||
{% assign author = "harttle" -%}
|
||||
{{ author }}
|
||||
```
|
||||
|
||||
Outputs:
|
||||
|
||||
Reference in New Issue
Block a user