javax0.jamal.asciidoc.converters.AsciiDocConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jamal-asciidoc Show documentation
Show all versions of jamal-asciidoc Show documentation
Asciidoc preprocessor extension
package javax0.jamal.asciidoc.converters;
import java.util.List;
/**
* The simplest ever converter.
* It just returns the original list of lines.
*/
public class AsciiDocConverter extends AbstractConverter {
@Override
public List convert(final List original) {
return original;
}
private static final List ex = List.of("adoc", "ad", "asciidoc");
@Override
List extensions() {
return ex;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy