Compare commits

...

5 Commits

Author SHA1 Message Date
Alexandre Mutel
a4a1a177bc Update doc and fix name for CommonMark specs 2022-04-21 07:40:17 +02:00
Alexandre Mutel
59d59694f4 Merge pull request #627 from xoofx/update-commonmark-spec
Update commonmark spec 0.30
2022-04-21 07:30:44 +02:00
Alexandre Mutel
caf3c722e1 Fix unicode case fold for spec 0.30 2022-04-21 07:26:02 +02:00
Alexandre Mutel
47c64d8815 Fix support for textarea with new CommonMark 0.30 specs 2022-04-20 19:04:28 +02:00
Alexandre Mutel
2502fab340 Update CommonMark specs to 0.30 2022-04-20 19:03:47 +02:00
5 changed files with 3075 additions and 2980 deletions

View File

@@ -14,7 +14,7 @@ You can **try Markdig online** and compare it to other implementations on [babel
- **Abstract Syntax Tree** with precise source code location for syntax tree, useful when building a Markdown editor.
- Checkout [MarkdownEditor for Visual Studio](https://visualstudiogallery.msdn.microsoft.com/eaab33c3-437b-4918-8354-872dfe5d1bfe) powered by Markdig!
- Converter to **HTML**
- Passing more than **600+ tests** from the latest [CommonMark specs (0.29)](http://spec.commonmark.org/)
- Passing more than **600+ tests** from the latest [CommonMark specs (0.30)](http://spec.commonmark.org/)
- Includes all the core elements of CommonMark:
- including **GFM fenced code blocks**.
- **Extensible** architecture

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -159,8 +159,8 @@ namespace Markdig.Parsers
int tagIndex = match.Value;
// Cannot start with </script </pre or </style
if ((tagIndex == 49 || tagIndex == 50 || tagIndex == 53))
// Cannot start with </script </pre or </style or </textArea
if ((tagIndex == 49 || tagIndex == 50 || tagIndex == 53 || tagIndex == 56))
{
if (c == '/' || hasLeadingClose)
{
@@ -241,6 +241,15 @@ namespace Markdig.Parsers
htmlBlock.UpdateSpanEnd(index + "</style>".Length);
result = BlockState.Break;
}
else
{
index = line.IndexOf("</textarea>", 0, true);
if (index >= 0)
{
htmlBlock.UpdateSpanEnd(index + "</textarea>".Length);
result = BlockState.Break;
}
}
}
}
break;
@@ -289,7 +298,7 @@ namespace Markdig.Parsers
return BlockState.Continue;
}
private static readonly CompactPrefixTree<int> HtmlTags = new(65, 93, 82)
private static readonly CompactPrefixTree<int> HtmlTags = new(66, 94, 83)
{
{ "address", 0 },
{ "article", 1 },
@@ -347,15 +356,16 @@ namespace Markdig.Parsers
{ "style", 53 }, // <=== special group 1
{ "summary", 54 },
{ "table", 55 },
{ "tbody", 56 },
{ "td", 57 },
{ "tfoot", 58 },
{ "th", 59 },
{ "thead", 60 },
{ "title", 61 },
{ "tr", 62 },
{ "track", 63 },
{ "ul", 64 }
{ "textarea", 56 }, // <=== special group 1
{ "tbody", 57 },
{ "td", 58 },
{ "tfoot", 59 },
{ "th", 60 },
{ "thead", 61 },
{ "title", 62 },
{ "tr", 63 },
{ "track", 64 },
{ "ul", 65 }
};
}
}

View File

@@ -5,6 +5,7 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using Markdig.Helpers;
namespace Markdig.Syntax
@@ -15,12 +16,18 @@ namespace Markdig.Syntax
/// <seealso cref="ContainerBlock" />
public class LinkReferenceDefinitionGroup : ContainerBlock
{
#if NET452
private static readonly StringComparer _unicodeIgnoreCaseComparer = StringComparer.InvariantCultureIgnoreCase;
#else
private static readonly StringComparer _unicodeIgnoreCaseComparer = CultureInfo.InvariantCulture.CompareInfo.GetStringComparer(CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace);
#endif
/// <summary>
/// Initializes a new instance of the <see cref="LinkReferenceDefinitionGroup"/> class.
/// </summary>
public LinkReferenceDefinitionGroup() : base(null)
{
Links = new Dictionary<string, LinkReferenceDefinition>(StringComparer.OrdinalIgnoreCase);
Links = new Dictionary<string, LinkReferenceDefinition>(_unicodeIgnoreCaseComparer);
}
/// <summary>