> 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/fill.md).

# Fill

Sometimes you may want to have a value in your schema that you do not parse but need to have.

{% code title="HTML" %}

```markup
<div class="parent">
  <div class="blue">Blue Text</div>
</div>

```

{% endcode %}

{% code title="Config" %}

```javascript
{
    "blueText": ".blue",
    "createdAt": {
        "fill": new Date().toUTCString()
    }
}
```

{% endcode %}

{% code title="Output" %}

```javascript
{
    "blueText": "Blue Text",
    "cretedAt": "Tue, 29 Jun 2021 20:41:49 GMT"
}
```

{% endcode %}
