jscl.editor.Exporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meditor Show documentation
Show all versions of meditor Show documentation
java symbolic computing library and mathematical editor
The newest version!
package jscl.editor;
import java.io.IOException;
import java.io.Reader;
import jscl.converter.Converter;
public class Exporter extends Converter {
public static final Exporter instance = new Exporter();
private Exporter() {
}
public String exportToXHTML(final Reader reader, final String stylesheet, final String title, final String feed, final String icon) throws IOException {
return apply(reader, stylesheet, title, feed, icon, null, true);
}
}