mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-10 20:02:31 +00:00
Implement a more sophisticated markdown parsing engine (#145)
This commit is contained in:
12
DiscordChatExporter.Core.Markdown/Node.cs
Normal file
12
DiscordChatExporter.Core.Markdown/Node.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace DiscordChatExporter.Core.Markdown
|
||||
{
|
||||
public abstract class Node
|
||||
{
|
||||
public string Lexeme { get; }
|
||||
|
||||
protected Node(string lexeme)
|
||||
{
|
||||
Lexeme = lexeme;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user