Not sure what's causing this:
> ruby -e "require 'redcarpet'; puts Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true).render('d@example.coü')"
<p><a href="mailto:d@example.co%C3">d@example.co�</a>�</p>
› ruby -e "require 'redcarpet'; puts Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true).render('d@example.coü').inspect"
"<p><a href=\"mailto:d@example.co%C3\">d@example.co\xC3</a>\xBC</p>\n"
It's fine without autolinking:
› ruby -e "require 'redcarpet'; puts Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: false).render('d@example.coü')"
<p>d@example.coü</p>
Not sure what's causing this:
It's fine without autolinking: