From 4a2e12cc845e6f821a4cacb9e851b15e3c3160cf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 07:57:55 +0000 Subject: [PATCH 1/2] Initial plan From 6a1490daedd22625bd90dfc81ae85b5bd9dbd721 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 08:20:41 +0000 Subject: [PATCH 2/2] Update tests for Scandinavian/German character normalization Co-authored-by: mos379 <45105519+mos379@users.noreply.github.com> --- src/Markdig.Tests/TestLinkHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Markdig.Tests/TestLinkHelper.cs b/src/Markdig.Tests/TestLinkHelper.cs index b9a15292..54f89fd7 100644 --- a/src/Markdig.Tests/TestLinkHelper.cs +++ b/src/Markdig.Tests/TestLinkHelper.cs @@ -327,8 +327,8 @@ public void TestUrilizeOnlyAscii_Simple(string input, string expectedResult) Assert.AreEqual(expectedResult, LinkHelper.Urilize(input, true)); } - [TestCase("bær", "br")] - [TestCase("bør", "br")] + [TestCase("bær", "baer")] + [TestCase("bør", "boer")] [TestCase("bΘr", "br")] [TestCase("四五", "")] public void TestUrilizeOnlyAscii_NonAscii(string input, string expectedResult)