import escapeHTML from 'escape-html' export function linkWarningLayout( title: string, containerContents: string, ): string { return ` ${escapeHTML(title)}
${containerContents}
` }