(header string)
| 78 | func FormatListHeader(header string) string { return header } |
| 79 | func FormatListItem(item string) string { return " • " + item } |
| 80 | func FormatSectionHeader(header string) string { return header } |
| 81 | |
| 82 | func RenderTable(config TableConfig) string { |
| 83 | if len(config.Headers) == 0 { |
no outgoing calls
no test coverage detected