export function wrapHtml(body: string): string { // Convert newlines to
for basic text-to-html const content = body.replace(/\n/g, "
"); return `${content}`; }