Summary
Run markdown-pdf with the configurator
- Namespace
- Cake
.Markdown_Pdf - Containing Type
- Markdown
Pdf Runner Aliases
Syntax
[CakeMethodAlias]
public static IMarkdownPdfRunner MarkdownPdf(this ICakeContext context, Action<MarkdownPdfRunnerSettings> configure)
Examples
Run 'markdown-pdf'
Cake task:
Task("MarkdownPdf")
.Does(() =>
{
MarkdownPdf(s => s.WithFilePath("README.md"));
});
Attributes
| Type | Description |
|---|---|
| CakeMethodAlias |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | The context |
| configure | Action |
Configurator |
Return Value
| Type | Description |
|---|---|
| IMarkdownPdfRunner |