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.

27 lines
1.2 KiB

  1. . tests/functions.sh
  2. title "automatic links"
  3. rc=0
  4. MARKDOWN_FLAGS=
  5. try 'http url' '<http://here>' '<p><a href="http://here">http://here</a></p>'
  6. try 'ftp url' '<ftp://here>' '<p><a href="ftp://here">ftp://here</a></p>'
  7. try 'http://foo/bar' '<http://foo/bar>' '<p><a href="http://foo/bar">http://foo/bar</a></p>'
  8. try 'http:/foo/bar' '<http:/foo/bar>' '<p><a href="http:/foo/bar">http:/foo/bar</a></p>'
  9. try 'http:foo/bar' '<http:foo/bar>' '<p><a href="http:foo/bar">http:foo/bar</a></p>'
  10. try '</foo/bar>' '</foo/bar>' '<p></foo/bar></p>'
  11. match '<orc@pell.portland.or.us>' '<orc@pell.portland.or.us>' '<a href='
  12. match '<orc@pell.com.>' '<orc@pell.com.>' '<a href='
  13. try 'invalid <orc@>' '<orc@>' '<p>&lt;orc@></p>'
  14. try 'invalid <@pell>' '<@pell>' '<p>&lt;@pell></p>'
  15. try 'invalid <orc@pell>' '<orc@pell>' '<p>&lt;orc@pell></p>'
  16. try 'invalid <orc@.pell>' '<orc@.pell>' '<p>&lt;orc@.pell></p>'
  17. try 'invalid <orc@pell.>' '<orc@pell.>' '<p>&lt;orc@pell.></p>'
  18. match '<mailto:orc@pell>' '<mailto:orc@pell>' '<a href='
  19. match '<mailto:orc@pell.com>' '<mailto:orc@pell.com>' '<a href='
  20. match '<mailto:orc@>' '<mailto:orc@>' '<a href='
  21. match '<mailto:@pell>' '<mailto:@pell>' '<a href='
  22. summary $0
  23. exit $rc