blob: 949f3749a15bc3ec53c7786db71341911a3e527e (
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
|
# links(1)
## NAME
links - Test of different link kinds
## DESCRIPTION
Inline link: [inline link](https://example.com/inline)
Reference link: [this is a link][bar]
Collapsed: [collapsed][]
Shortcut: [shortcut]
Autolink: <https://example.com/auto>
Email: <foo@example.com>
Relative link: [relative link](foo/bar.html)
Collapsed unknown: [collapsed unknown][]
Reference unknown: [foo][unknown]
Shortcut unknown: [shortcut unknown]
{{man "other-cmd" 1}}
{{man "local-cmd" 1}}
{{> links-include}}
## OPTIONS
{{#options}}
{{#option "`--foo-bar`"}}
Example [link](bar.html).
See {{man "other-cmd" 1}}, {{man "local-cmd" 1}}
{{/option}}
{{/options}}
[bar]: https://example.com/bar
[collapsed]: https://example.com/collapsed
[shortcut]: https://example.com/shortcut
|