(title: string, lines: ReadonlyArray<string>)
| 1033 | } |
| 1034 | |
| 1035 | function renderTextSection(title: string, lines: ReadonlyArray<string>): string { |
| 1036 | if (lines.length === 0) { |
| 1037 | return `${title}\n (none)`; |
| 1038 | } |
| 1039 | return [title, ...lines.map((line) => ` ${line}`)].join('\n'); |
| 1040 | } |
| 1041 | |
| 1042 | function renderCommandSection( |
| 1043 | commands: Array<{ name: string; schema: CommandSchema; usage: string }>, |