com.greenpepper.dialect.SpecificationDialect Maven / Gradle / Ivy
package com.greenpepper.dialect;
/**
* Define a way to convert an input to the HTML output that will be fed to Greenpepper.
*/
public interface SpecificationDialect {
/**
* Converts the content of an input to the HTML output that will be fed to GreenPepper Core
* @param input The input content to convert.
* @return The HTML output.
*/
String convert(String input) throws SpecificationDialectException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy