NAME
HtmlParagraphsFromDoubleNewlinesString — Convert a string into a series of HTML paragraphs.
SYNOPSIS
HtmlParagraphsFromDoubleNewlinesString StringVariable
DESCRIPTION
Return Value
A string containing a series of HTML paragraphs, one for each substring paragraph that is delimited by double newlines.
Arguments
StringVariableString with paragraphs delimited by newlines, to be converted into a series of HTML paragraphs.
More Info
Note that arguments of the form XxxVariable can take either a normal value or the name of a variable to read/write, prefixed by @. See About Using @ for details.

For information regarding exceptions / errors, see here.
EXAMPLES
% HtmlParagraphsFromDoubleNewlinesString {First paragraph\n\nSecond paragraph\n\nThird paragraph}
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Third paragraph</p>
SEE ALSO
NewlinesStringToOneHtmlParagraph
KEYWORDS
conversion, html, string, transform