Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tyrrrz
GitHub Repository: Tyrrrz/DiscordChatExporter
Path: blob/master/DiscordChatExporter.Cli.Tests/Utils/Html.cs
544 views
using AngleSharp.Html.Dom;
using AngleSharp.Html.Parser;

namespace DiscordChatExporter.Cli.Tests.Utils;

internal static class Html
{
    private static readonly IHtmlParser Parser = new HtmlParser();

    public static IHtmlDocument Parse(string source) => Parser.ParseDocument(source);
}