(sectionHeader string, depth int)
| 392 | } |
| 393 | |
| 394 | func (t *table) indented(sectionHeader string, depth int) *table { |
| 395 | return &table{ |
| 396 | threshold: t.threshold, |
| 397 | nameStyle: t.nameStyle, |
| 398 | sectionHeader: sectionHeader, |
| 399 | footnotes: t.footnotes, |
| 400 | indent: t.indent + depth, |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | func (t *table) subTable(sectionHeader string) *table { |
| 405 | return t.indented(sectionHeader, 1) |