File: Renderer\LiteralInlineRenderer.cs | Web Access |
Project: src\src\Graphics\src\Text.Markdig\Graphics.Text.Markdig.csproj (Microsoft.Maui.Graphics.Text.Markdig) |
using Markdig.Syntax.Inlines; namespace Microsoft.Maui.Graphics.Text.Renderer { public class LiteralInlineRenderer : AttributedTextObjectRenderer<LiteralInline> { protected override void Write(AttributedTextRenderer renderer, LiteralInline obj) { renderer.Write(ref obj.Content); } } } |