Class MarkdownSpan
- Namespace
- McServerLauncher.Services
- Assembly
- McServerLauncher.dll
A run of text inside a block, with the formatting that applies to it.
public sealed record MarkdownSpan : IEquatable<MarkdownSpan>
- Inheritance
-
MarkdownSpan
- Implements
- Inherited Members
Constructors
MarkdownSpan(string, bool, bool, bool, string?)
A run of text inside a block, with the formatting that applies to it.
public MarkdownSpan(string Text, bool Bold = false, bool Italic = false, bool Code = false, string? Link = null)
Parameters
Properties
Bold
public bool Bold { get; init; }
Property Value
Code
public bool Code { get; init; }
Property Value
Italic
public bool Italic { get; init; }
Property Value
Link
public string? Link { get; init; }
Property Value
Text
public string Text { get; init; }