diff --git a/Whitespace-Control.md b/Whitespace-Control.md index 2d86f64..4e85401 100644 --- a/Whitespace-Control.md +++ b/Whitespace-Control.md @@ -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: