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

Function section

src/setup/prompt.ts:255–260  ·  view source on GitHub ↗
(title: string)

Source from the content-addressed store, hash-verified

253
254/** Render a section header. Output-only — no I/O wait. */
255export function section(title: string): void {
256 console.log('');
257 console.log(divider());
258 console.log(` ${title}`);
259 console.log(divider());
260}
261
262/** Render a paragraph of explanatory text indented under a section. */
263export function paragraph(text: string): void {

Callers 1

runSetupFunction · 0.70

Calls 1

dividerFunction · 0.85

Tested by

no test coverage detected