# Markdown:Indent

This tag is used for transforming Markdown while ignoring whitespace in your view files.

## Example {#example}

::tabs

::tab antlers
```antlers
<article class="mx-auto max-w-lg">
  {{ markdown:indent }}
    # My Favorite Nickelodeon Shows

    - Kenan & Kel
    - All That
    - Double Dare
    - Wild & Crazy Kids
    - Legends of the Hidden Temple
  {{ /markdown:indent }}
</article>
```
::tab blade
```blade
<article class="mx-auto max-w-lg">
  <s:markdown:indent>
    # My Favorite Nickelodeon Shows

    - Kenan & Kel
    - All That
    - Double Dare
    - Wild & Crazy Kids
    - Legends of the Hidden Temple
  </s:markdown:indent>
</article>
```
::

```html
<article class="mx-auto max-w-lg">
  <h1>My Favorite Nickelodeon Shows</h1>
  <ul>
    <li>Kenan & Kel</li>
    <li>All That</li>
    <li>Double Dare</li>
    <li>Wild & Crazy Kids</li>
    <li>Legends of the Hidden Temple</li>
  </ul>
</article>
```
