${projects.map(({ description, entity, highlights = [], name, startDate, endDate, roles = [], url }) => html`
${description && markdown(description)}
${highlights.length > 0 && html`
${highlights.map(highlight => html`- ${markdown(highlight)}
`)}
`}
`)}