From 7880437196f0105d7648ff7a0f4bcc061395a2e0 Mon Sep 17 00:00:00 2001 From: simonpetit Date: Fri, 13 Dec 2024 13:05:00 +0000 Subject: [PATCH] drafting --- drafts/markdown_testing_suite.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drafts/markdown_testing_suite.md b/drafts/markdown_testing_suite.md index 6dcfe3c..287698c 100644 --- a/drafts/markdown_testing_suite.md +++ b/drafts/markdown_testing_suite.md @@ -44,4 +44,6 @@ is strictly equivalent to : whereas the strings are not equal. -The most naive approach I came with (and because I wanted a quick prototype so I didn't think much about it) was to remove all carriage return from the parser output, using `tr -d '\n'` +The most naive approach I came with (and because I wanted a quick prototype so I didn't think much about it) was to remove all carriage return from the parser output, using `tr -d '\n'`. + +All tests are hard coded within the script. I am aware this might not be the best solution, but on the other hand as this is a script, and not a compiled program, it is as easy as changing "hardcoded" tests as it would be on a separate config file, so its does not bother me right now.