> For the complete documentation index, see [llms.txt](https://wopehq.gitbook.io/muninn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wopehq.gitbook.io/muninn/config/schema.md).

# Schema

Muninn lets you create nested schemas. In this way, you can group the data you want or convert your parsing output to the format you want.

{% code title="HTML" %}

```markup
<div class="parent">
  <a href="/about">About</div>
</div>

```

{% endcode %}

{% code title="Config" %}

```javascript
{
    "link": {
        "schema": {
            "title": "a",
            "url": "a @ href",
        }
    }
}
```

{% endcode %}

{% code title="Output" %}

```javascript
{
    "link": {
        "title": "About",
        "url": "/about"
    }
}
```

{% endcode %}
