Str::encode for mails not working

Hey.
I would like to encode a mailto E-Mail address.

I found this:

<a href="mailto:<?= Str::encode($page->email()) ?>">
    <?= Str::encode($page->email()) ?>
</a>

It seems like kirby avoids the encode method. The inspector shows the decoded mail address.
I thought it might not be working on a local machines, but that makes no difference.

You have to look at the source code to see the encoding at work, not the inspector.

AAH. I am embarrassed. :see_no_evil: :innocent:
That makes sense and there it works.