check_equal"Should convert bold and italic in a sentence""<p>It <i>is</i> a <b>wonderful</b> day</p>"(convert"It _is_ a __wonderful__ day")
]
linkTests=
TestList
[check_equal"Should convert normal link""<p><a href=\"https://example.com\">This is an example link.</a></p>"(convert"[This is an example link.](https://example.com)"),
[check_equal"Should print literal underscore""<p>This is an underscore - _</p>"(convert"This is an underscore - \\_"),
check_equal"Should print literal asterisk""<p>This is an asterisk - *</p>"(convert"This is an asterisk - \\*"),
check_equal"Should print literal asterisk in bold""<p>This is a bolded asterisk - <b>*</b></p>"(convert"This is a bolded asterisk - **\\***")
]
integrationTests=
TestList
[check_equal"Integration 1""<h1>Sample Markdown</h1><p>This is some basic, sample markdown.</p><h2><b>Second</b> <i>Heading</i></h2>"(convert"# Sample Markdown\n\n This is some basic, sample markdown.\n\n ## __Second__ _Heading_"),