Create Markdown-friendly rows from JSON data.
Section: Logs and Reporting
Build Markdown table rows
bash
bash
echo '[{"name":"alice","score":90},{"name":"bob","score":85}]' | jq -r '.[] | "| (.name) | (.score) |"'Explanation
Handy for docs, PR comments, and status reports.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Logs and Reporting