Split a single string into several paragraphs by a given character.
Install with component(1):
$ component install slifszyc/paragraphs
Used to split the given text into several paragraphs using the character as paragraph separator
p.split('hello\nworld!', "\n") // returns "<p>hello</p><p>world!</p>"
MIT