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.