2using System.Threading.Tasks;
31 StringBuilder Output =
new StringBuilder();
32 await Document.GenerateXAML(Output, XmlSettings);
33 return Output.ToString();
54 return Document.GenerateXAML(Output, XmlSettings,
new XamlSettings());
67 XmlSettings.ConformanceLevel = ConformanceLevel.Fragment;
84 XmlSettings.ConformanceLevel = ConformanceLevel.Fragment;
100 StringBuilder Output =
new StringBuilder();
102 return Output.ToString();
Contains a markdown document. This markdown document class supports original markdown,...
async Task RenderDocument(IRenderer Output)
Renders the document using provided output format.
Markdown rendering extensions for WPF XAML.
static Task GenerateXAML(this MarkdownDocument Document, StringBuilder Output, XmlWriterSettings XmlSettings)
Generates WPF XAML from the markdown text.
static async Task< string > GenerateXAML(this MarkdownDocument Document, XamlSettings XamlSettings)
Generates WPF XAML from the markdown text.
static Task GenerateXAML(this MarkdownDocument Document, StringBuilder Output)
Generates WPF XAML from the markdown text.
static async Task GenerateXAML(this MarkdownDocument Document, StringBuilder Output, XamlSettings XamlSettings)
Generates WPF XAML from the markdown text.
static async Task< string > GenerateXAML(this MarkdownDocument Document, XmlWriterSettings XmlSettings)
Generates WPF XAML from the markdown text.
static async Task GenerateXAML(this MarkdownDocument Document, StringBuilder Output, XmlWriterSettings XmlSettings, XamlSettings XamlSettings)
Generates WPF XAML from the markdown text.
static Task< string > GenerateXAML(this MarkdownDocument Document)
Generates WPF XAML from the markdown text.
Renders XAML (WPF flavour) from a Markdown document.
Contains settings that the XAML export uses to customize XAML output.
Helps with common XML-related tasks.
static XmlWriterSettings WriterSettings(bool Indent, bool OmitXmlDeclaration)
Gets an XML writer settings object.