# Markdown

Transform a string with [Markdown][markdown].

```yaml
quote: You can't wait for inspiration. **You have to go after it with a club.**

```

::tabs

::tab antlers
```antlers
{{ quote | markdown }}
```
::tab blade
```blade
{!! Statamic::modify($quote)->markdown() !!}
```
::

```html
<p>
    You can't wait for inspiration. <strong>You have to go after it with a club.</strong>
</p>
```

[markdown]: https://daringfireball.net/projects/markdown/
