From 07ed00e8f70dc3669defb9ff62e64d0fd30c53ff Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 30 Oct 2025 11:40:46 -0700 Subject: [PATCH] Add a test for manually written header tags --- tests/testsuite/markdown/basic_markdown/expected/html.html | 6 +++++- tests/testsuite/markdown/basic_markdown/src/html.md | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/tests/testsuite/markdown/basic_markdown/expected/html.html b/tests/testsuite/markdown/basic_markdown/expected/html.html index 7213939f..f08b5ec8 100644 --- a/tests/testsuite/markdown/basic_markdown/expected/html.html +++ b/tests/testsuite/markdown/basic_markdown/expected/html.html @@ -62,4 +62,8 @@ const x = 'some *text* inside'; \ No newline at end of file + +

Manual headers

+

My Header

+ +

Another header

\ No newline at end of file diff --git a/tests/testsuite/markdown/basic_markdown/src/html.md b/tests/testsuite/markdown/basic_markdown/src/html.md index b2383cb4..7e33aaca 100644 --- a/tests/testsuite/markdown/basic_markdown/src/html.md +++ b/tests/testsuite/markdown/basic_markdown/src/html.md @@ -92,3 +92,9 @@ const x = 'some *text* inside'; + +## Manual headers + +

My Header

+ +

Another header