JSONHTL Para Arrays - Formatting Guide

CRITICAL: Multiple strings in one para array render inline (concatenated on same line).

WRONG - All on one line

{"para": ["Item 1", "Item 2", "Item 3"]}

Result: Item 1Item 2Item 3 (no separation)

CORRECT - Separate para blocks

{"para": ["Item 1"]},

{"para": ["Item 2"]},

{"para": ["Item 3"]}

Result: Each item appears on its own line.

When to keep strings together in one array

Only when they should render inline (like mixed text and links):

{"para": ["See ", {"link": {...}}, " for details."]}

Renders as: See [link] for details. (all inline)

Real example from popit3

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.

version 1