'];
+ if (o.eyebrow) {
+ parts.push('' + escapeHtml(o.eyebrow) + '
');
+ }
+ if (o.title) {
+ parts.push('' + escapeHtml(o.title) + '
');
+ }
+ if (o.lede) {
+ parts.push('' + escapeHtml(o.lede) + '
');
+ }
+ if (o.meta) {
+ parts.push('' + escapeHtml(o.meta) + '
');
+ }
+ parts.push('' + (bodyHtml || '') + '
');
+ parts.push('');
+ return parts.join('');
+ }
+
// ---- DOM wiring ----------------------------------------------------
function $(id) { return document.getElementById(id); }