Describes a Markdown code block being rendered.
public readonly record struct MarkdownCodeBlockRenderContext(string Code, string? FenceInfo, string? Language, bool IsFenced, Theme Theme, MarkdownStyle Style, MarkdownRenderOptions Options) : IEquatable<MarkdownCodeBlockRenderContext>
kind:method, kind:property, kind:ctor. Press Esc to clear.MarkdownCodeBlockRenderContext(String, String?, String?, Boolean, Theme, MarkdownStyle, MarkdownRenderOptions)Describes a Markdown code block being rendered.CodeThe normalized code text with \n line endings.FenceInfoThe raw fenced-code info string when present.IsFencedA value indicating whether the source block is a fenced code block.LanguageThe parsed language token derived from FenceInfo when present.OptionsThe active markdown render options.StyleThe resolved markdown style.ThemeThe current terminal UI theme.