public void test15() {
HTML2WikiConverter conv = new HTML2WikiConverter();
// invalid nested html test
conv.setInputHTML("The <a href=\"http://good\">good</a> the <div>bad</div> and <b><i>the</i> ugly</b>");
String result = conv.toWiki(new ToWikipedia());
assertEquals(result, "The [[good]] the \n" +
"<div>bad\n" +
"</div> and '''''the'' ugly'''");
}