mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-28 12:13:39 +00:00
Implement a more sophisticated markdown parsing engine (#145)
This commit is contained in:
10
DiscordChatExporter.Core.Markdown/MarkdownParser.cs
Normal file
10
DiscordChatExporter.Core.Markdown/MarkdownParser.cs
Normal file
@@ -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