class Liquid::Echo

@liquid_public_docs @liquid_type tag @liquid_category syntax @liquid_name echo @liquid_summary

Outputs an expression.

@liquid_description

Using the `echo` tag is the same as wrapping an expression in curly brackets (`{{` and `}}`). However, unlike the curly
bracket method, you can use the `echo` tag inside [`liquid` tags](/docs/api/liquid/tags/liquid).

> Tip:
> You can use [filters](/docs/api/liquid/filters) on expressions inside `echo` tags.

@liquid_syntax

{% liquid
  echo expression
%}

@liquid_syntax_keyword expression The expression to be output.