From d81c512cb9e8e86df7121965b1b8915428ab4b56 Mon Sep 17 00:00:00 2001 From: simonpetit Date: Mon, 9 Dec 2024 15:25:28 +0000 Subject: [PATCH] adding a test for inline code parsing --- test/parser/test_md_parser.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/parser/test_md_parser.sh b/test/parser/test_md_parser.sh index 18873a7..bf2166b 100755 --- a/test/parser/test_md_parser.sh +++ b/test/parser/test_md_parser.sh @@ -116,6 +116,9 @@ declare -a tests=( "A link to [wikipedia](https://www.wikipedia.org)" "

A link to wikipedia

" + "Inline code" + "A simple function \`printf()\`" + "

A simple function printf()

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