package main import ( "bytes" "context" ) // CyberpunkTextBlock renders the built-in text block with cyberpunk styling: // scanline-friendly leading and accent-coloured inline spans. func CyberpunkTextBlock(ctx context.Context, content map[string]any) string { text := getString(content, "text") class := getString(content, "class") var buf bytes.Buffer _ = cyberpunkTextComponent(text, class).Render(ctx, &buf) return buf.String() }