${symbol ? html`${symbol}` : nothing} Reference ${title} ${keywords.length > 0 ? html`${keywords.map((k) => html`${k}`)}` : nothing} ${prose.map( ([key, text]) => html` ${humanize(key)}${text} `, )} ${ facts.length > 0 ? html` ${facts.map( ([key, value]) => html` ${humanize(key)} ${value} `, )} ` : nothing } ${lists.map( ([key, items]) => html` ${humanize(key)} ${items.map((i) => html`${i}`)} `, )}