summaryrefslogtreecommitdiffstats
path: root/src/go/doc/comment/testdata/text.txt
blob: c4de6e20d22d26d8368ab1919374ef754cd16914 (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
{"TextPrefix":"|", "TextCodePrefix": "@"}
-- input --
Hello, world
 Code block here.
More text.
Tight list
 - one
 - two
 - three
Loose list
 - one

 - two

 - three

# Heading

More text.
-- gofmt --
Hello, world

	Code block here.

More text.
Tight list
  - one
  - two
  - three

Loose list

  - one

  - two

  - three

# Heading

More text.
-- text --
|Hello, world
|
@Code block here.
|
|More text. Tight list
|  - one
|  - two
|  - three
|
|Loose list
|
|  - one
|
|  - two
|
|  - three
|
|# Heading
|
|More text.