diff options
author | rsiddharth <s@ricketyspace.net> | 2017-03-04 07:56:44 +0000 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2017-03-04 07:56:44 +0000 |
commit | c492802aacf8b59cc18cde1eb371561315ff791d (patch) | |
tree | ed178e66060b8376d70869db82049d7b40fa2808 /tests/data/footnote_link_style_01-expected.md | |
parent | aab16fc524986e0c70afb2d5b8ddbf5fc79e1e0b (diff) |
tests: Update `test_mdl_style.TestLSRendererFN` class.
* tests/data/footnote_link_style_01-expected.md: New file.
* tests/data/footnote_link_style_01.md: New file.
* tests/test_mdl_style.py
(TestLSRendererFN.test_link_inline_to_footnote_style_conversion_01):
Add method.
Diffstat (limited to 'tests/data/footnote_link_style_01-expected.md')
-rw-r--r-- | tests/data/footnote_link_style_01-expected.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/data/footnote_link_style_01-expected.md b/tests/data/footnote_link_style_01-expected.md new file mode 100644 index 0000000..0f56a8b --- /dev/null +++ b/tests/data/footnote_link_style_01-expected.md @@ -0,0 +1,27 @@ +This is [an example][0] nibh tempor link. + +[0]: http://example.com/ (Title) + +[This link][1] quam erat volutpat. + +[1]: http://example.net/ + +See my [About][2] page for details. + +[2]: /about/ + +Cras [an example][3] +non dapibus ipsum. + +[3]: http://example.com/ (Optional Title Here) + +Nullam semper, [an example][4] +blandit sapien. + +[4]: http://example.com/ (Optional Title Here) + +There were [foo00][5] +and [foo01][6] in the bar. + +[5]: http://example.com/foo/00 (Foo 00 Title) +[6]: http://example.com/foo/01 (Foo 01 Title) |