Files
marechai/Marechai.App/Presentation/Views/MessageMarkdownView.xaml
Natalia Portillo 96b211aa77 Fix markdown rendering in Marechai.App via native XAML renderer
MarkdownTextBlock crashed with a NullReferenceException in ThemeListener
under Uno, and the WebView2-based fallback used by description pages
doesn't composite on Linux desktop. Render markdown directly to XAML
elements (TextBlock/Span/Hyperlink/Image trees) via Markdig's AST instead,
shared by MessageMarkdownView and all entity description pages, with no
embedded browser dependency on any platform.
2026-06-30 14:16:22 +01:00

9 lines
310 B
XML

<?xml version="1.0" encoding="utf-8"?>
<UserControl x:Class="Marechai.App.Presentation.Views.MessageMarkdownView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid x:Name="RootGrid" />
</UserControl>