If I enter the text <me@example.com> on my profile page, it does not appear. Is this part of Markdown supported by SE?
I saw this on Markdown's page:
Automatic links for email addresses work similarly, except that Markdown will also perform a bit of randomized decimal and hex entity-encoding to help obscure your address from address-harvesting spambots. For example, Markdown will turn this:
<address@example.com>into something like this:
<a href="mail ... m">ad ... m</a>which will render in a browser as a clickable link to “address@example.com”.

codefor that? If not, then it's just a disallowed HTML element for the sanitizer? And either case: how is using<...>a Markdown obfuscation? The only Markdown usage I can find is for URLs. Like<http://example.com>can enforce clickable links for difficult URLs that are hard to recognize automatically. – Arjan Jan 22 '11 at 15:53<me@example.com>nor<mailto:me@example.com>gets one a clickable link (despite the mentioning in the Markdown help). This also applies to questions and answers. Even<a href="mailto:me@example.com">me@example.com</a>is not clickable. – Arjan Jan 22 '11 at 19:09