ebooklib icon indicating copy to clipboard operation
ebooklib copied to clipboard

Breaks bold html tag

Open mrx23dot opened this issue 4 years ago • 0 comments

`c1.set_content(u'<html><body> <b>bold title</b>  </body></html>')`
...
epub.write_epub(filename, book, opts)

generates the following invalid html in epub:

  <body>
    <b/>       <--- should be <b>
    bold title
    <b/>

mrx23dot avatar Sep 21 '20 20:09 mrx23dot