I am searching for a solution/plugin to add “mailto” markdown text.
But it has to have spam prevention in it.
Is there a plugin for this? I couldn;d it.
There’s a [safe_email](Twig filter: http://learn.getgrav.org/themes/twig-filters-functions#safe-email) Twig filter already.
Thanks for reply
Sorry, I think I mis a part of programming… how can I integrate this in the blog page ? Just by markdown?
And is it still clickable by href mailto?
Enable twig processing in the page and then just write {{'your.email@server.com'|safe_email}}
To have a mailto link:
<a href="mailto:{{'your.email@server.com'|safe_email}}">
Email me
</a>
Thanks, its working now.
Adding a ?subject is not working. Is that correct
Removed the ’ around the mail adress and the subject is also working.
Even call to: works. TOP