Text file src/go/doc/comment/testdata/hello.txt
1 -- input -- 2 Hello, 3 world 4 5 This is 6 a test. 7 -- dump -- 8 Doc 9 Paragraph 10 Plain 11 "Hello,\n" 12 "world" 13 Paragraph 14 Plain 15 "This is\n" 16 "a test." 17 -- gofmt -- 18 Hello, 19 world 20 21 This is 22 a test. 23 -- html -- 24 <p>Hello, 25 world 26 <p>This is 27 a test. 28 -- markdown -- 29 Hello, world 30 31 This is a test. 32 -- text -- 33 Hello, world 34 35 This is a test. 36