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
{{ message }}
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
I ran the demo project and it worked as expected. I then pulled the NuGet package into my own project and installed it. There is an issue with the following properties of the Markdown class:
TableBodyStyle`
TableHeaderStyle
I pulled the code out of the sample, pulled in the xaml namespace and recieve the following warning:
With these 2 styles set the app will not build, if these are removed then the app builds and displays the markdown, without table support.
Consider the following markdown document:
# Markdown
## My Markdown Page
This is great I have rendered some markdown!
- List Item
- List Item
- List Item
Lets render a table!
| Name | Email |
|-------|-----------------|
| User1 | user1@email.com |
| User2 | user2@email.com |
Hooray!
When referencing the NuGet package the following is rendered:
If I pull the code from Markdown.Xaml directly into my project (bypassing the NuGet) then it renders correctly:
I ran the demo project and it worked as expected. I then pulled the NuGet package into my own project and installed it. There is an issue with the following properties of the
Markdownclass:TableBodyStyle`
TableHeaderStyleI pulled the code out of the sample, pulled in the xaml namespace and recieve the following warning:

With these 2 styles set the app will not build, if these are removed then the app builds and displays the markdown, without table support.
Consider the following markdown document:
When referencing the NuGet package the following is rendered:

If I pull the code from Markdown.Xaml directly into my project (bypassing the NuGet) then it renders correctly:
Does the NuGet package need rebuilding?