In 2.10 it works fine.
MathML fragment is broken
Thank you Scott!
MathML equations without a namespace prefix are breaking paragraphs
The problem was not solved completely. In HTML 5 you can skip declaring the SVG namespace. In this case the title element is removed from the output. I tested with HC 2.7: <html> <head> <title>Title of document</title> </head> <body> <svg width="100" height="100"> <title>A big circle.</title> <desc>The round shape.</desc> <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /> </svg> </body> </html> The result is <svg height="100" width="100"> A big circle. <desc>The round...