The manner of creating paragraphs in ConTeXt appears to differ from that in LaTeX. In LaTeX, one need only create an empty line between two paragraphs, and paragraphs are automatically created, e.g.:
This is a paragraph.
This is another paragraph.
From looking through the various ConTeXt manuals, including the LaTeX in Proper ConTeXt article, I have only found mention that paragraphs are formed in a different manner, but no mention of how to actually form them. Perhaps such information is regarded as too basic to bother explaining or too simple to appear in any of my searches? Of the limited sample code I have found, most rely on sections to form the boundaries between paragraphs. I have learned of the \crlf command, but this appears more as equal to \\, but I am unclear if it is meant to designate the end and beginning of a new paragraph.
How are paragraphs defined in ConTeXt?

\setupindentation[medium,yes]. – Aditya Sep 19 '12 at 20:35\noindent, and this may be overridden by adding an extra blank line after the paragraph to obtain an indent anyway; while ConTeXt is whitespace-agnostic in this, and requires you to use\indentationor setup[indentnext=...]. wiki.contextgarden.net/Indentation The talk of ignored blank lines may have left you thinking that paragraphs are different, but it's indentation, really. – Esteis Sep 20 '12 at 7:08