-
Notifications
You must be signed in to change notification settings - Fork 5
Markdown2Pdf.IConvertionEvents
GitHub Action edited this page May 25, 2024
·
1 revision
Namespace: Markdown2Pdf
Assembly: Markdown2Pdf.dll
Interface for events that occur during the conversion process.
public interface IConvertionEventsName of the output file.
string? OutputFileName { get; }Gets invoked before the markdown to HTML conversion.
event EventHandler<MarkdownArgs> BeforeHtmlConversionGets invoked after a temporary PDF file is created.
event EventHandler<PdfArgs> OnTempPdfCreatedEventThis only happens if a parsing of the generated PDF is needed, e.g. for generating page numbers.
Gets invoked when the template model is created.
event EventHandler<TemplateModelArgs> OnTemplateModelCreatingEventHandler<TemplateModelArgs>
This can be used to add custom content to the html template.