mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-01-29 06:10:54 +00:00
15 lines
342 B
C#
15 lines
342 B
C#
namespace DiscordChatExporter.Core.Markdown
|
|
{
|
|
public class InlineCodeBlockNode : Node
|
|
{
|
|
public string Code { get; }
|
|
|
|
public InlineCodeBlockNode(string lexeme, string code)
|
|
: base(lexeme)
|
|
{
|
|
Code = code;
|
|
}
|
|
|
|
public override string ToString() => $"<Code> {Code}";
|
|
}
|
|
} |