HtmlParagraphsFromDoubleNewlinesString — Convert a string into a series of HTML paragraphs.
A string containing a series of HTML paragraphs, one for each substring paragraph that is delimited by double newlines.
StringVariable | String with paragraphs delimited by newlines, to be converted into a series of HTML paragraphs. |
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.
% HtmlParagraphsFromDoubleNewlinesString {First paragraph\n\nSecond paragraph\n\nThird paragraph}
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Third paragraph</p>