mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-01-29 06:10:54 +00:00
10 lines
277 B
C#
10 lines
277 B
C#
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);
|
|
}
|
|
} |