docs/checks/space_inside_braces.md in theme-check-0.8.0 vs docs/checks/space_inside_braces.md in theme-check-0.8.1
- old
+ new
@@ -15,10 +15,14 @@
{{x }}
<!-- After commas and semicolons -->
{% form 'type', object, key:value %}
{% endform %}
+
+<!-- Arround filter pipelines -->
+{{ url | asset_url | img_tag }}
+{% assign my_upcase_string = "Hello world"| upcase %}
```
:+1: Examples of **correct** code for this check:
```liquid
@@ -31,9 +35,11 @@
product_card_product: product_recommendation,
show_vendor: section.settings.show_vendor,
media_size: section.settings.product_recommendations_image_ratio,
center_align_text: section.settings.center_align_text
%}
+{{ url | asset_url | img_tag }}
+{% assign my_upcase_string = "Hello world" | upcase %}
```
## Check Options
The default configuration for this check is the following: