mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-01-29 06:10:54 +00:00
19 lines
385 B
C#
19 lines
385 B
C#
namespace DiscordChatExporter.Core.Markdown
|
|
{
|
|
public class TextNode : Node
|
|
{
|
|
public string Text { get; }
|
|
|
|
public TextNode(string lexeme, string text)
|
|
: base(lexeme)
|
|
{
|
|
Text = text;
|
|
}
|
|
|
|
public TextNode(string text) : this(text, text)
|
|
{
|
|
}
|
|
|
|
public override string ToString() => Text;
|
|
}
|
|
} |