net.elehack.gradle.science.PandocSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-science Show documentation
Show all versions of gradle-science Show documentation
Gradle tasks for scientific publication.
The newest version!
package net.elehack.gradle.science;
import java.io.File;
import java.util.List;
/**
* Interface for specifying Pandoc executions.
*/
public interface PandocSpec {
String getSourceFormat();
void setSourceFormat(String fmt);
String getOutputFormat();
void setOutputFormat(String fmt);
List getSrcFlags();
void setSrcFlags(List flags);
List getOutFlags();
void setOutFlags(List flags);
boolean getStandalone();
void setStandalone(boolean flag);
List