When rendering markdown that contains email-style links, the built-in HTML renderer generates an anchor tag without the mailto: scheme.
For example, running:
echo "You can ask [John Doe](john.doe@email.com)." | cargo run -q --
produces:
<p>You can ask <a href="john.doe@email.com">John Doe</a>.</p>
The expected behavior is for the href attribute to include the mailto: prefix, so that the link is recognized as an email link.