If one uses an email address with a string that looks like an acronym, and defines that acronym, the acronym is converted
inside the mailto link.
Example:
puts Kramdown::Document.new(<<EOF
* <NCH@example.com>
*[NCH]: National Clearing House
EOF
).to_html
outputs:
<ul>
<li><a href="mailto:NCH@example.com"><abbr title="National Clearing
House">NCH</abbr>@example.com</a></li>
</ul>
which is wrong. The inner abbr element shouldn't be HTML encoded, or should not be parsed at all. |