Added additional check that will allow the use of pandoc without the --strict flag or 'hsmarkdown' hack.

This commit is contained in:
Mike Gauthier 2016-12-29 00:39:28 -05:00
parent 9f66ad0c5b
commit c9a297c9b1
1 changed files with 4 additions and 1 deletions

5
bb.sh
View File

@ -171,7 +171,10 @@ global_variables_check() {
# Test if the markdown script is working correctly
test_markdown() {
[[ -n $markdown_bin ]] &&
[[ $("$markdown_bin" <<< $'line 1\n\nline 2') == $'<p>line 1</p>\n\n<p>line 2</p>' ]]
(
[[ $("$markdown_bin" <<< $'line 1\n\nline 2') == $'<p>line 1</p>\n\n<p>line 2</p>' ]] ||
[[ $("$markdown_bin" <<< $'line 1\n\nline 2') == $'<p>line 1</p>\n<p>line 2</p>' ]]
)
}