use Base.show (#165)

* use Base.show

* drop offending show method altogether
pull/169/head
Dave Kleinschmidt 2019-01-28 09:20:03 -05:00 committed by Matti Pastell
parent 921b9ec2ba
commit d0c71ba556
1 changed files with 0 additions and 7 deletions

View File

@ -226,11 +226,4 @@ htmlinline(io::IO, x) = tohtml(io, x)
html(md) = sprint(html, md)
function show(io::IO, ::MIME"text/html", md::MD)
withtag(io, :div, :class=>"markdown") do
html(io, md)
end
end
end