diff options
author | VirtualTam <virtualtam+github@flibidi.net> | 2016-10-22 12:53:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-22 12:53:15 +0200 |
commit | 761b4e283737a48934457855448df98e8014ba73 (patch) | |
tree | 3a98fc6dee7edd3a13f335f97fb9bc4faf95f064 /tests/plugins/resources/markdown.md | |
parent | 3d5e0aede31e07f060e3ca470d36374c54d5040c (diff) | |
parent | c5941f316a49c94eff354b63e75b3add98ac4aea (diff) | |
download | Shaarli-761b4e283737a48934457855448df98e8014ba73.tar.gz Shaarli-761b4e283737a48934457855448df98e8014ba73.tar.zst Shaarli-761b4e283737a48934457855448df98e8014ba73.zip |
Merge pull request #674 from ArthurHoaro/parsedown-composer
Use Composer for Parsedown and fix an issue with links
Diffstat (limited to 'tests/plugins/resources/markdown.md')
-rw-r--r-- | tests/plugins/resources/markdown.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/plugins/resources/markdown.md b/tests/plugins/resources/markdown.md new file mode 100644 index 00000000..0b8be7c5 --- /dev/null +++ b/tests/plugins/resources/markdown.md | |||
@@ -0,0 +1,24 @@ | |||
1 | * test: | ||
2 | * [zero](http://link.tld) | ||
3 | + [two](http://link.tld) | ||
4 | - [three](http://link.tld) | ||
5 | |||
6 | 1. [zero](http://link.tld) | ||
7 | 2. [two](http://link.tld) | ||
8 | 3. [three](http://link.tld) | ||
9 | 4. [four](http://link.tld) | ||
10 | 5. foo #foobar | ||
11 | |||
12 | #foobar foo `lol #foo` #bar | ||
13 | |||
14 | fsdfs http://link.tld #foobar `http://link.tld` | ||
15 | |||
16 | http://link.tld #foobar | ||
17 | next #foo | ||
18 | |||
19 | Block: | ||
20 | |||
21 | ``` | ||
22 | lorem ipsum #foobar http://link.tld | ||
23 | #foobar http://link.tld | ||
24 | ``` \ No newline at end of file | ||