
com.kasisoft.cdi.services.wikitext.HtmlService Maven / Gradle / Ivy
package com.kasisoft.cdi.services.wikitext;
/**
* Service api for Html generators.
*
* @author [email protected]
*/
public interface HtmlService {
/**
* Builds the HTML code from the supplied markup.
*
* @param config Some configuration options for the markup generation. Maybe null
.
* @param markup The markup which will be converted into HTML. Not null
.
*
* @return The converted HTML code. Not null
.
*/
String buildHtml( HtmlConfig config, String markup );
} /* ENDINTERFACE */
© 2015 - 2025 Weber Informatics LLC | Privacy Policy