summaryrefslogtreecommitdiffstats
path: root/src/go/doc/comment/testdata/hello.txt
blob: fb07f1eb7575df12261acc19c09c29e272e09815 (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
-- input --
	Hello,
	world

	This is
	a test.
-- dump --
Doc
	Paragraph
		Plain
			"Hello,\n"
			"world"
	Paragraph
		Plain
			"This is\n"
			"a test."
-- gofmt --
Hello,
world

This is
a test.
-- html --
<p>Hello,
world
<p>This is
a test.
-- markdown --
Hello, world

This is a test.
-- text --
Hello, world

This is a test.