Convert a two-row TSV table
Input
name role John admin Anna editor
Output
- name: John role: admin - name: Anna role: editor
Useful for turning flat records into simple YAML list items.
Developer Tools
Review practical Convert TSV to YAML examples so you can understand expected input, output, and common patterns faster.
Use this TSV to YAML converter to turn tab-separated values into YAML. It is useful for lightweight exports, config-style output, spreadsheet cleanup, and converting flat tabular data into a readable indentation-based format.
Example pages are especially useful for developer tools because they show what good input looks like, what kind of output to expect, and how the tool behaves in common scenarios.
Input
name role John admin Anna editor
Output
- name: John role: admin - name: Anna role: editor
Useful for turning flat records into simple YAML list items.
Input
name price Pen 2
Output
- name: Pen price: 2
Good for quick conversion of spreadsheet-style rows.
Fix: Use a header row because the converter uses headers as YAML field names.
Fix: Use TSV input with real tab delimiters.
Fix: Use consistent columns for best YAML output.
After reviewing these examples, run the live tool with your own input. If your task involves a follow-up step, the related page can help you move to the next tool in the workflow.
Open the main Convert TSV to YAML page and test your own real input.