mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-08 21:37:02 +00:00
Style rendering is incomplete #670
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Geek-Bob on GitHub (Apr 30, 2024).
code
Problem description
For example: font title size, font background color, table border, table line background color, code block
Normal style
[markdig] Style rendering
@MihaZupan commented on GitHub (May 1, 2024):
Things like tables aren't enabled by default. You must opt-in by adding additional extensions, e.g.
UseAdvancedExtensions.Markdig won't add CSS for you -- styling is left up to you.
@Geek-Bob commented on GitHub (Jun 11, 2024):
Sorry, I pasted the wrong code earlier, I was trying to convert Markdown to FlowDocument.
My original code is:
But then I read your source code and found a solution, as follows:
I wonder if this is a reasonable solution