package main import ( "bytes" "context" ) // CorporateModernistTextBlock renders the built-in `text` block with // Inter at 17/28, tabular figures, and hanging punctuation. func CorporateModernistTextBlock(ctx context.Context, content map[string]any) string { text := getString(content, "text") class := getString(content, "class") var buf bytes.Buffer _ = textOverrideComponent(text, class).Render(ctx, &buf) return buf.String() }