Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Created December 11, 2016 21:21
Show Gist options
  • Save thiagoa/f5e0e7e46575e8421d4c5b3a7525452d to your computer and use it in GitHub Desktop.
Save thiagoa/f5e0e7e46575e8421d4c5b3a7525452d to your computer and use it in GitHub Desktop.
export default function wrapSentencesInTags(text) {
return text
.split('\n')
.map(chunk => chunk.trim())
.map(chunk => (chunk !== '') ? `<p>${chunk}</p>` : '')
.join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment