package main import ( "bytes" "context" ) // TextOverrideBlock renders body text with the Magazine Bold Inter cadence // and a margin folio. // // Built-in text content shape: {"text": "...", "class": "..."} func TextOverrideBlock(ctx context.Context, content map[string]any) string { text := getString(content, "text") class := getString(content, "class") var buf bytes.Buffer _ = mbTextComponent(text, class).Render(ctx, &buf) return buf.String() }