Remove BOM

This commit is contained in:
tyrrrz
2026-04-19 23:13:12 +03:00
parent 7456f0fe3a
commit 34b5ccc75b
175 changed files with 175 additions and 175 deletions

View File

@@ -1,4 +1,4 @@
using DiscordChatExporter.Core.Discord;
using DiscordChatExporter.Core.Discord;
using DiscordChatExporter.Core.Discord.Data;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,4 +1,4 @@
namespace DiscordChatExporter.Core.Markdown;
namespace DiscordChatExporter.Core.Markdown;
internal enum FormattingKind
{

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,3 +1,3 @@
namespace DiscordChatExporter.Core.Markdown;
namespace DiscordChatExporter.Core.Markdown;
internal record InlineCodeBlockNode(string Code) : MarkdownNode;

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,3 +1,3 @@
namespace DiscordChatExporter.Core.Markdown;
namespace DiscordChatExporter.Core.Markdown;
internal abstract record MarkdownNode;

View File

@@ -1,4 +1,4 @@
namespace DiscordChatExporter.Core.Markdown;
namespace DiscordChatExporter.Core.Markdown;
internal enum MentionKind
{

View File

@@ -1,4 +1,4 @@
using DiscordChatExporter.Core.Discord;
using DiscordChatExporter.Core.Discord;
namespace DiscordChatExporter.Core.Markdown;

View File

@@ -1,3 +1,3 @@
namespace DiscordChatExporter.Core.Markdown;
namespace DiscordChatExporter.Core.Markdown;
internal record MultiLineCodeBlockNode(string Language, string Code) : MarkdownNode;

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown.Parsing;

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
namespace DiscordChatExporter.Core.Markdown.Parsing;

View File

@@ -1,3 +1,3 @@
namespace DiscordChatExporter.Core.Markdown.Parsing;
namespace DiscordChatExporter.Core.Markdown.Parsing;
internal readonly record struct MarkdownContext(int Depth = 0);

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;

View File

@@ -1,4 +1,4 @@
namespace DiscordChatExporter.Core.Markdown.Parsing;
namespace DiscordChatExporter.Core.Markdown.Parsing;
internal class ParsedMatch<T>(StringSegment segment, T value)
{

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Text.RegularExpressions;
namespace DiscordChatExporter.Core.Markdown.Parsing;

View File

@@ -1,4 +1,4 @@
using System;
using System;
namespace DiscordChatExporter.Core.Markdown.Parsing;

View File

@@ -1,4 +1,4 @@
using System.Text.RegularExpressions;
using System.Text.RegularExpressions;
namespace DiscordChatExporter.Core.Markdown.Parsing;

View File

@@ -1,3 +1,3 @@
namespace DiscordChatExporter.Core.Markdown;
namespace DiscordChatExporter.Core.Markdown;
internal record TextNode(string Text) : MarkdownNode;

View File

@@ -1,4 +1,4 @@
using System;
using System;
namespace DiscordChatExporter.Core.Markdown;