diff --git a/Liquid-for-Designers.textile b/Liquid-for-Designers.textile index f371fd5..b4eafd0 100644 --- a/Liquid-for-Designers.textile +++ b/Liquid-for-Designers.textile @@ -295,4 +295,15 @@ Another way of doing this would be to assign @true / false@ values to the variab {% endif %} -If you want to combine a number of strings into a single string and save it to a variable, you can do that with the @capture@ tag. This tag is a block which "captures" whatever is rendered inside it, then assigns the captured value to the given variable instead of rendering it to the screen. \ No newline at end of file +If you want to combine a number of strings into a single string and save it to a variable, you can do that with the @capture@ tag. This tag is a block which "captures" whatever is rendered inside it, then assigns the captured value to the given variable instead of rendering it to the screen. + +
+  {% capture attribute_name %}{{ item.title | handleize }}-{{ i }}-color{% endcapture %}
+
+  
+  
+
\ No newline at end of file