Is it possible to create a link to an email addres or a telephone number?

I want to create direct telephone link int dynalink (so I can click it while on mobile)
<a href="tel:+32 (0)123456">+32 (0)123456</a>
+32 (0)123456

and also direct click to email links, so I can send a email to a client in no time
Send Email

<a href="mailto:email@example.com">Send Email</a>

You write them in markdown

[blah](tel:+32 (0)123456)
[blah](mailto:email@example.com)
1 Like