diff --git a/DiscordChatExporter.Core.Markdown/Internal/ParsedMatch.cs b/DiscordChatExporter.Core.Markdown/Internal/ParsedMatch.cs index dcb14a1..b56d2ea 100644 --- a/DiscordChatExporter.Core.Markdown/Internal/ParsedMatch.cs +++ b/DiscordChatExporter.Core.Markdown/Internal/ParsedMatch.cs @@ -1,6 +1,6 @@ namespace DiscordChatExporter.Core.Markdown.Internal { - internal partial class ParsedMatch + internal class ParsedMatch { public int StartIndex { get; } diff --git a/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.MessageGroup.cs b/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.MessageGroup.cs index 2809af3..958bf61 100644 --- a/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.MessageGroup.cs +++ b/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.MessageGroup.cs @@ -1,6 +1,6 @@ -using DiscordChatExporter.Core.Models; -using System; +using System; using System.Collections.Generic; +using DiscordChatExporter.Core.Models; namespace DiscordChatExporter.Core.Rendering { diff --git a/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.TemplateLoader.cs b/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.TemplateLoader.cs index 21504c4..3e4b5ee 100644 --- a/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.TemplateLoader.cs +++ b/DiscordChatExporter.Core.Rendering/HtmlChatLogRenderer.TemplateLoader.cs @@ -1,8 +1,8 @@ -using Scriban.Parsing; -using Scriban.Runtime; -using Scriban; -using System.Reflection; +using System.Reflection; using System.Threading.Tasks; +using Scriban; +using Scriban.Parsing; +using Scriban.Runtime; using Tyrrrz.Extensions; namespace DiscordChatExporter.Core.Rendering