github.com/AndrienkoAleksandr/go@v0.0.19/src/go/doc/comment/testdata/list.txt (about) 1 -- input -- 2 Text. 3 - Not a list. 4 - Here is the list. 5 • Using multiple bullets. 6 * Indentation does not matter. 7 + Lots of bullets. 8 More text. 9 10 -- gofmt -- 11 Text. 12 - Not a list. 13 - Here is the list. 14 - Using multiple bullets. 15 - Indentation does not matter. 16 - Lots of bullets. 17 18 More text. 19 20 -- text -- 21 Text. - Not a list. 22 - Here is the list. 23 - Using multiple bullets. 24 - Indentation does not matter. 25 - Lots of bullets. 26 27 More text. 28 29 -- markdown -- 30 Text. - Not a list. 31 32 - Here is the list. 33 - Using multiple bullets. 34 - Indentation does not matter. 35 - Lots of bullets. 36 37 More text. 38 39 -- html -- 40 <p>Text. 41 - Not a list. 42 <ul> 43 <li>Here is the list. 44 <li>Using multiple bullets. 45 <li>Indentation does not matter. 46 <li>Lots of bullets. 47 </ul> 48 <p>More text.