From cb9fb5dafb920cf55a8bb1d3535c00b32b3ea7ba Mon Sep 17 00:00:00 2001 From: Simon Petit Date: Thu, 5 Dec 2024 12:40:09 +0100 Subject: [PATCH] x --- test/parser/test_md_parser.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parser/test_md_parser.sh b/test/parser/test_md_parser.sh index a798545..9db1efb 100755 --- a/test/parser/test_md_parser.sh +++ b/test/parser/test_md_parser.sh @@ -30,7 +30,7 @@ fi declare -a tests=( "Header 1" "# Header 1" - "

Header

" + "

Header 1

" "Header 2" "## Header 2" @@ -110,7 +110,7 @@ declare -a tests=( "Link 1" "This is a [link](https://www.google.com) to google" - "

This is a link to google

" + $'

This is a link to google

' # You can add more test cases following the same format...