Text file src/go/doc/comment/testdata/linklist4.txt

     1  {"DocLinkBaseURL": "https://pkg.go.dev"}
     2  -- input --
     3  Cool things:
     4  
     5    - Foo
     6    - [Go] is great
     7  
     8      [Go]: https://go.dev/
     9    - Bar
    10  
    11  -- text --
    12  Cool things:
    13  
    14    - Foo
    15  
    16    - Go is great
    17  
    18    - Bar
    19  
    20  [Go]: https://go.dev/
    21  -- markdown --
    22  Cool things:
    23  
    24    - Foo
    25  
    26    - [Go](https://go.dev/) is great
    27  
    28    - Bar
    29  
    30  -- html --
    31  <p>Cool things:
    32  <ul>
    33  <li><p>Foo
    34  <li><p><a href="https://go.dev/">Go</a> is great
    35  <li><p>Bar
    36  </ul>
    37  

View as plain text