MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / paragraph

Function paragraph

src/setup/prompt.ts:263–266  ·  view source on GitHub ↗
(text: string)

Source from the content-addressed store, hash-verified

261
262/** Render a paragraph of explanatory text indented under a section. */
263export function paragraph(text: string): void {
264 const wrapped = text.split('\n').map(l => ` ${l}`).join('\n');
265 console.log(wrapped);
266}
267
268function divider(): string {
269 return '─'.repeat(70);

Callers 1

runSetupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected