# Antlers

Parses the given value as an Antlers template.

```yaml
title: 'Hello {{ audience }}!'
audience: world
```

::tabs

::tab antlers
```antlers
{{ title | antlers }}
```

::tab blade
```blade
{{ Statamic::modify($title)->antlers() }}
```
::

```
Hello world!
```
