> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Filters are used to modify the output of variables and other values.

Filters modify the output of numbers, strings, variables, objects, and arrays. A filter is applied using a pipe character (`|`) followed by the filter name:

```liquid theme={null}
{{ variable | filter }}
```

You can chain multiple filters together, applying one after the other:

```liquid theme={null}
{{ "hello world" | capitalize | upcase }}
```

Some filters can take arguments which are specified after a colon (`:`) character:

```liquid theme={null}
{{ "hello world" | truncate: 5 }}
```

Check detailed documentation for each filter in the following sections:

<CardGroup cols={3}>
  <Card title="Array" icon="layer-group" href="/en/members-area/reference/filters/array">
    Filters for working with arrays and collections
  </Card>

  <Card title="String" icon="font" href="/en/members-area/reference/filters/string">
    Filters for manipulating text and strings
  </Card>

  <Card title="HTML" icon="code" href="/en/members-area/reference/filters/html">
    Filters for working with HTML content
  </Card>

  <Card title="Math" icon="calculator" href="/en/members-area/reference/filters/math">
    Filters for mathematical operations
  </Card>

  <Card title="Date" icon="calendar" href="/en/members-area/reference/filters/date">
    Filters for working with dates and times
  </Card>

  <Card title="Misc" icon="sliders" href="/en/members-area/reference/filters/misc">
    Other useful filters
  </Card>
</CardGroup>

For complete documentation, refer to the [LiquidJS documentation](https://liquidjs.com/filters/overview.html).
