org.javalite.activeweb.HTML Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aw-mate Show documentation
Show all versions of aw-mate Show documentation
This plugin will generate Open API - compliant document from sources of an ActiveWeb app.
package org.javalite.activeweb;
import com.googlecode.htmlcompressor.compressor.HtmlCompressor;
public class HTML {
private static final HtmlCompressor compressor = new HtmlCompressor();
static {
compressor.setPreserveLineBreaks(false);
}
public static String compress(String html) {
return compressor.compress(html);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy