I’ve added a new fenced code block option to ClarionHub to make creating simple tables much easier.
Instead of manually formatting tables, you can now use a pipe-separated layout inside a code fence with grid.
Example
```grid
Name|Type|Description
CustomerID|LONG|Primary key
FirstName|STRING(50)|Customer first name
Balance|DECIMAL(10,2)|Account balance
```
Output
Name|Type|Description
CustomerID|LONG|Primary key
FirstName|STRING(50)|Customer first name
Balance|DECIMAL(10,2)|Account balance
Notes
- First row is treated as the header
- Columns are separated with
| - No alignment or padding needed
- Ideal for:
- Dictionary structures
- File layouts
- API parameters
- Quick comparisons
Why this helps
This should make it much easier to share structured information without fighting Markdown table formatting.
Mark