diff options
Diffstat (limited to 'tests/markdown-test')
-rwxr-xr-x | tests/markdown-test/angle-links-and-img.html | 7 | ||||
-rwxr-xr-x | tests/markdown-test/angle-links-and-img.txt | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/markdown-test/angle-links-and-img.html b/tests/markdown-test/angle-links-and-img.html new file mode 100755 index 0000000..e32b6e6 --- /dev/null +++ b/tests/markdown-test/angle-links-and-img.html @@ -0,0 +1,7 @@ +<p> + <a href="simple link" title="title">link</a> + <img alt="image" src="http://example.com/image.jpg" /> + <a href="http://example.com/(()((())923)(">link</a> + <img alt="image" src="link(()))(" /> +</p> + diff --git a/tests/markdown-test/angle-links-and-img.txt b/tests/markdown-test/angle-links-and-img.txt new file mode 100755 index 0000000..1dbf404 --- /dev/null +++ b/tests/markdown-test/angle-links-and-img.txt @@ -0,0 +1,4 @@ +[link](<simple link> "title") +![image](<http://example.com/image.jpg>) +[link](<http://example.com/(()((())923)(>) +![image](<link(()))(>) |