You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the only way to set the content of a MarkdownTextBlock is via the Text property, which internally uses Markdown.Parse to convert to a MarkdownDocument. It would be nice to also allow users to pass in an existing MarkdownDocument as an alternative.
Currently, the only way to set the content of a MarkdownTextBlock is via the
Text
property, which internally usesMarkdown.Parse
to convert to aMarkdownDocument
. It would be nice to also allow users to pass in an existingMarkdownDocument
as an alternative.Example:
Benefits:
Markdown.Parse(...)
, such as mutating the MarkdownDocument tree with decorationsMarkdown.ToHtml(...)
The text was updated successfully, but these errors were encountered: