This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.AsciiDoctorJ.
Summary
Runs the tool using an action to configure settings.
Syntax
public static void AsciiDoctorJ(this ICakeContext context, Action<AsciiDoctorJRunnerSettings> configure = null)
Examples
Task("Convert")
.Does(() =>
{
AsciiDoctorJ(s => s
.WithVerbose()
.WithDocType(DocType.Article)
.WithBackend("pdf")
.WithInputFile(file)
.WithDestinationDir(distDir));
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Return Value