While looking for another issue (more on that later) I noticed that there is a version of rst2html5 bundled as well as a dependency on the package. Use of the later is nowhere to be found in the code...
Quickly replacing the import in waliki/settings.py with from rst2html5_ import HTML5Writer seems to make it working perfectly.
The current version of the package produces output with one less newline, so I've changed the tests to accommodate that.
Coverage increased (+3.6%) to 74.766% when pulling b2901f04791c311d78760b6c9b85e1410d579065 on wagnerflo:rst2html5 into 8358391700909056ef994e8e35ecc2ec552bba31 on mgaitan:master.
While looking for another issue (more on that later) I noticed that there is a version of
rst2html5
bundled as well as a dependency on the package. Use of the later is nowhere to be found in the code...Quickly replacing the import in
waliki/settings.py
withfrom rst2html5_ import HTML5Writer
seems to make it working perfectly.The current version of the package produces output with one less newline, so I've changed the tests to accommodate that.