summaryrefslogtreecommitdiffstats
path: root/tests/test_port/fixtures/linkify.md
blob: 9edb78f3a528599d248eb96fd26d3bd8a212e25f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
linkify
.
url http://www.youtube.com/watch?v=5Jt5GEr4AYg.
.
<p>url <a href="http://www.youtube.com/watch?v=5Jt5GEr4AYg">http://www.youtube.com/watch?v=5Jt5GEr4AYg</a>.</p>
.


don't touch text in links
.
[https://example.com](https://example.com)
.
<p><a href="https://example.com">https://example.com</a></p>
.


don't touch text in autolinks
.
<https://example.com>
.
<p><a href="https://example.com">https://example.com</a></p>
.


don't touch text in html <a> tags
.
<a href="https://example.com">https://example.com</a>
.
<p><a href="https://example.com">https://example.com</a></p>
.


match links without protocol
.
www.example.org
.
<p><a href="http://www.example.org">www.example.org</a></p>
.


emails
.
test@example.com

mailto:test@example.com
.
<p><a href="mailto:test@example.com">test@example.com</a></p>
<p><a href="mailto:test@example.com">mailto:test@example.com</a></p>
.


typorgapher should not break href
.
http://example.com/(c)
.
<p><a href="http://example.com/(c)">http://example.com/(c)</a></p>
.

before line
.
before
github.com
.
<p>before
<a href="http://github.com">github.com</a></p>
.

after line
.
github.com
after
.
<p><a href="http://github.com">github.com</a>
after</p>
.

before after lines
.
before
github.com
after
.
<p>before
<a href="http://github.com">github.com</a>
after</p>
.

before after lines with blank line
.
before

github.com

after
.
<p>before</p>
<p><a href="http://github.com">github.com</a></p>
<p>after</p>
.