From 3b9b2217108fcaace3323762040b29a98b6e7432 Mon Sep 17 00:00:00 2001 From: Simon Petit Date: Thu, 5 Dec 2024 11:57:16 +0100 Subject: [PATCH] Adding a test for markdown parsing --- test/parser/test_md_parser.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/parser/test_md_parser.sh b/test/parser/test_md_parser.sh index 7429936..0faee82 100755 --- a/test/parser/test_md_parser.sh +++ b/test/parser/test_md_parser.sh @@ -96,6 +96,10 @@ declare -a tests=( "paragraph *emphasis* and **strong**" "

paragraph emphasis and strong

" + "Paragraph 3" + "paragraph with *one* emphasis and *two* emphasis" + "

paragraph with one emphasis and two emphasis

" + "Mix Code blocks and paragraphs 1" $'First paragraph\n\n code block' "

First paragraph

code block
"