MarkdownExportAsHtml

MarkdownExportAsHtml enumeration

Ermöglicht die Angabe der Elemente, die als reines HTML nach Markdown exportiert werden sollen.

[Flags]
public enum MarkdownExportAsHtml

Werte

NameWertBeschreibung
None0Exportieren Sie alle Elemente mit Markdown-Syntax ohne reines HTML.
Tables1Tabellen als reines HTML exportieren.

Beispiele

Zeigt, wie eine Tabelle als reines HTML nach Markdown exportiert wird.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Writeln("Sample table:");

// Tabelle erstellen.
builder.InsertCell();
builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;
builder.Write("Cell1");
builder.InsertCell();
builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
builder.Write("Cell2");

MarkdownSaveOptions saveOptions = new MarkdownSaveOptions();
saveOptions.ExportAsHtml = MarkdownExportAsHtml.Tables;

doc.Save(ArtifactsDir + "MarkdownSaveOptions.ExportTableAsHtml.md", saveOptions);

Siehe auch