Examples of HTML2WikiConverter


Examples of info.bliki.html.HTML2WikiConverter

    String result = conv.toWiki(new ToMoinMoin(true, true));
    assertEquals(result, "hello ''world''");
  }

  public void test9() {
    HTML2WikiConverter conv = new HTML2WikiConverter();
    conv.setInputHTML("<h2>hello \n world\n</h2>");
    String result = conv.toWiki(new ToMoinMoin(true, true));
    assertEquals(result, "\n" + "== hello   world ==\n");
  }
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.