Add test coverage for headlines with > 6 # characters

This commit is contained in:
Jason Nelson
2024-02-09 12:54:52 -08:00
parent 0446959623
commit 6a15c804bc

View File

@@ -51,6 +51,16 @@ public class TestNormalize
});
}
[Test]
public void SyntaxHeadlineLevel7()
{
AssertSyntax("####### Headline", new HeadingBlock(null) {
HeaderChar = '#',
Level = 7,
Inline = new ContainerInline().AppendChild(new LiteralInline("Headline")),
});
}
[Test]
public void SyntaxParagraph()
{