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.

33 lines
374 B

  1. . tests/functions.sh
  2. title "paragraph flow"
  3. rc=0
  4. MARKDOWN_FLAGS=
  5. try 'header followed by paragraph' \
  6. '###Hello, sailor###
  7. And how are you today?' \
  8. '<h3>Hello, sailor</h3>
  9. <p>And how are you today?</p>'
  10. try 'two lists punctuated with a HR' \
  11. '* A
  12. * * *
  13. * B
  14. * C' \
  15. '<ul>
  16. <li>A</li>
  17. </ul>
  18. <hr />
  19. <ul>
  20. <li>B</li>
  21. <li>C</li>
  22. </ul>'
  23. summary $0
  24. exit $rc