CRITICAL: Multiple strings in one para array render inline (concatenated on same line).
{"para": ["Item 1", "Item 2", "Item 3"]}
Result: Item 1Item 2Item 3 (no separation)
{"para": ["Item 1"]},
{"para": ["Item 2"]},
{"para": ["Item 3"]}
Result: Each item appears on its own line.
Only when they should render inline (like mixed text and links):
{"para": ["See ", {"link": {...}}, " for details."]}
Renders as: See [link] for details. (all inline)
The Documentation section lists each link in separate para blocks so they display on separate lines, not all concatenated together.
This is the correct pattern for creating organized, readable notes.