Paragraphs

You can separate text into distinct paragraphs by using blank lines.

A paragraph is delimited by a blank line
The following SPLDOC markup generates two paragraphs by separating two lines of text with one blank line.
/**
 * The first paragraph.
 *
 * The second paragraph.
 */

The spl-make-doc command renders the markup as two distinct paragraphs

The first paragraph.

The second paragraph.