mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-07-26 23:29:49 +02:00
Implement a more sophisticated markdown parsing engine (#145)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using DiscordChatExporter.Core.Markdown.Internal;
|
||||
|
||||
namespace DiscordChatExporter.Core.Markdown
|
||||
{
|
||||
public static class MarkdownParser
|
||||
{
|
||||
public static IReadOnlyList<Node> Parse(string input) => Grammar.BuildTree(input);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user