Examples of toWiki()


Examples of info.bliki.html.HTML2WikiConverter.toWiki()

  }

  public void test8() {
    HTML2WikiConverter conv = new HTML2WikiConverter();
    conv.setInputHTML("<font size=\"1\">hello</font> <em>world</em>");
    String result = conv.toWiki(new ToWikipedia(true, true));
    assertEquals(result, "hello ''world''");
  }

  public void test9() {
    HTML2WikiConverter conv = new HTML2WikiConverter();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.