A section of lines in the tabular output, consisting of a header and a number of bullet lines. The lines in a section can themselves be bulletized, in which case the header becomes a top-level bullet and the lines become second-level bullets.
| 82 | // be bulletized, in which case the header becomes a top-level bullet |
| 83 | // and the lines become second-level bullets. |
| 84 | type section struct { |
| 85 | name string |
| 86 | contents []tableContents |
| 87 | } |
| 88 | |
| 89 | func newSection(name string, contents ...tableContents) *section { |
| 90 | return §ion{ |
nothing calls this directly
no outgoing calls
no test coverage detected