What it can do
- Convert comma boundaries to cells
- Wrap each line as a row
- Produce a standalone HTML document
How the recipe works
Find / Replace
Replace commas with cell boundaries.
Find / Replace
Wrap every line in row and cell tags.
Find / Replace
Add the document, body, and table containers.
Demonstration
Sample input
name,role
Ada,analyst
Lin,engineerExpected result
<table border="1">When to use it
- Quick internal reports
- Transformation teaching
- Prototyping data presentation
Adapt it
Use CSV to JSON for quoted fields, embedded commas, or production data; this recipe intentionally teaches text composition with a simple fixture.
Source and verification
Adapted from kraven-security CyberChef recipes. The explanation and sample are written for Serialize, use synthetic or documentation-safe data, and are checked against the current operation catalogue. The workflow runs locally without an external API call.