this.urlStub = urlStub;
this.source = (sb == null) ? null : sb.toString();
}
public void genHTML() throws IOException {
try {
final WikiParser wparser = new WikiCode();
this.html = wparser.transform(this.hostport, this.source);
} catch (final Exception e) {
Log.logException(e);
throw new IOException(e.getMessage());
}
}