(title, body string)
| 211 | } |
| 212 | |
| 213 | func (d *ShellDoc) AddSection(title, body string) { |
| 214 | d.Groups = append(d.Groups, ShellDocSection{Title: title, Body: body, Indent: helpIndent}) |
| 215 | } |
| 216 | |
| 217 | func (d ShellDoc) String() string { |
| 218 | width := getViewWidth() |