(entity: any)
| 429 | return /^(help|\?|h|帮助)$/i.test(t) || /(?:^|\s)(help|\?|帮助)(?:\s|$)/i.test(t); |
| 430 | } |
| 431 | |
| 432 | function foldSection(title: string, body: string): string { |
| 433 | // 标签与正文之间禁止换行:<blockquote expandable>内容</blockquote> |
| 434 | return `${title}\n<blockquote expandable>${body}</blockquote>`; |
| 435 | } |
| 436 | |
| 437 | function buildQuoteHelpText(): string { |
| 438 | const prefixes = getPrefixes(); |
| 439 | const mainPrefix = prefixes[0] || "."; |
| 440 | const cmd = `${mainPrefix}q`; |
no outgoing calls
no test coverage detected