github.com/AndrienkoAleksandr/go@v0.0.19/src/go/doc/comment/testdata/list4.txt (about) 1 -- input -- 2 Text. 3 1. List 4 2. Not indented, not a list. 5 3. Another list. 6 7 -- gofmt -- 8 Text. 9 1. List 10 11 2. Not indented, not a list. 12 3. Another list. 13 14 -- text -- 15 Text. 16 1. List 17 18 2. Not indented, not a list. 19 3. Another list. 20 21 -- markdown -- 22 Text. 23 24 1. List 25 26 2\. Not indented, not a list. 27 28 3. Another list. 29 30 -- html -- 31 <p>Text. 32 <ol> 33 <li>List 34 </ol> 35 <p>2. Not indented, not a list. 36 <ol> 37 <li value="3">Another list. 38 </ol>