class Liquid::Capture

@liquid_public_docs @liquid_type tag @liquid_category variable @liquid_name capture @liquid_summary

Creates a new variable with a string value.

@liquid_description

You can create complex strings with Liquid logic and variables.

@liquid_syntax

{% capture variable %}
  value
{% endcapture %}

@liquid_syntax_keyword variable The name of the variable being created. @liquid_syntax_keyword value The value you want to assign to the variable.