export const newLineToParagraph = (text) => { return text .split(/\n+/) .map(p => `

${p}

`) .join(''); };