Skip to content

Commit 9f90f15

Browse files
committed
feat: add useful Liquid templating resources to the blueprint YAML structure documentation
1 parent 06078a0 commit 9f90f15

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

docs/blueprint-designer-guide/blueprints/blueprints-yaml-structure.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1276,4 +1276,8 @@ customization:
12761276

12771277
The `visible` property uses Liquid templating syntax to create dynamic conditions. Common patterns include:
12781278
- `{% if inputs.field_name == "value" %} true {% else %} false {% endif %}` - Show input when another field equals a specific value
1279-
- `{% if inputs.field_name != "value" %} true {% else %} false {% endif %}` - Show input when another field doesn't equal a specific value
1279+
- `{% if inputs.field_name != "value" %} true {% else %} false {% endif %}` - Show input when another field doesn't equal a specific value
1280+
1281+
**Useful Liquid Templating Resources:**
1282+
- [Liquid Templating Introduction](https://shopify.github.io/liquid/basics/introduction/) - Learn the basics and syntax of Liquid templating
1283+
- [Liquid Playground](https://liquidjs.com/playground.html) - Interactive playground to test and experiment with Liquid expressions

0 commit comments

Comments
 (0)