Alias to assist with running Pandoc from Cake build scripts
#addin nuget:?package=Cake.Pandoc&version={Version}
This addin exposes the functionality of Pandoc to the Cake by being a very thin wrapper around its command line interface; this means that you can use Cake.Pandoc in the same way as you would normally use Pandoc CLI.
#addin nuget:?package=Cake.Pandoc={Version}
// Install Pandoc.Windows as a Cake Tool
#tool nuget:?package=Pandoc.Windows&version=2.1.0
Task("Pandoc-Example-Html")
.Does(() =>
{
var settings = new PandocSettings();
settings.Output = File("output.html");
settings.Files.Add(File("path/to/input.txt"));
Pandoc(settings);
});
Jürgen Rosenthal-Buroh @JuergenRB
Cake.Pandoc follows the Contributor Covenant Code of Conduct.
We accept Pull Requests.
Small note: If editing the Readme, please conform to the standard-readme specification.