Text::Markdown::Discount
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
559 B

  1. . tests/functions.sh
  2. title "markdown 1.0 compatibility"
  3. rc=0
  4. MARKDOWN_FLAGS=
  5. LINKY='[this] is a test
  6. [this]: /this'
  7. try 'implicit reference links' "$LINKY" '<p><a href="/this">this</a> is a test</p>'
  8. try -f1.0 'implicit reference links (-f1.0)' "$LINKY" '<p>[this] is a test</p>'
  9. WSP=' '
  10. WHITESPACE="
  11. white space$WSP
  12. and more"
  13. try 'trailing whitespace' "$WHITESPACE" '<pre><code>white space ''
  14. and more
  15. </code></pre>'
  16. try -f1.0 'trailing whitespace (-f1.0)' "$WHITESPACE" '<pre><code>white space''
  17. and more
  18. </code></pre>'
  19. summary $0
  20. exit $rc