Phone and Email links in Markdown
You can use tel: and mailto: to make phone and email links in markdown like this:
[Call Me!](tel:1111111)
This is equivalent to:
<a href="tel:1111111">Call Me!</a>
Similarly, for email links you can use:
[example@example.com](mailto:example@example.com)
HTML equivalent:
<a href="mailto:example@example.com">example@example.com</a>
Tweet