You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Differentiate TSV to JSON SEO content from CSV to JSON
Rewrites meta description, page header, tools-list preview text, and
the full SEO component for TSV to JSON so it no longer mirrors the
CSV to JSON page. Content now highlights TSV-specific advantages like
tab delimiters avoiding comma conflicts, spreadsheet/database export
use cases, and browser-only processing.
https://claude.ai/code/session_01D2zMkTfpCjUn3uawHbzQ1p
Copy file name to clipboardExpand all lines: components/utils/tools-list.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ export const tools = [
8
8
{
9
9
title: "TSV to JSON",
10
10
description:
11
-
"Easily convert TSV data to JSON format with our free tool. Quickest way to turn tab-separated data into a JSON format for APIs and data processing.",
11
+
"Transform tab-separated values into structured JSON. Ideal for spreadsheet exports, database dumps, and scientific datasets with no delimiter conflicts.",
Copy file name to clipboardExpand all lines: pages/utilities/tsv-to-json.tsx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -149,15 +149,15 @@ Bob\t35\tUK`;
149
149
<main>
150
150
<Meta
151
151
title="TSV to JSON Converter | Free, Open Source & Ad-free"
152
-
description="Convert TSV files to JSON format quickly and easily with Jam's free online TSV to JSON converter. Upload your TSV file or paste its content and get the JSON result. That's it."
152
+
description="Convert tab-separated values to JSON instantly. Paste or upload your TSV file and get structured JSON output — perfect for turning spreadsheet exports and database dumps into API-ready data."
153
153
/>
154
154
<Header/>
155
155
<CMDK/>
156
156
157
157
<sectionclassName="container max-w-2xl mb-12">
158
158
<PageHeader
159
159
title="TSV to JSON Converter"
160
-
description="Fast, free, open source, ad-free tools."
160
+
description="Turn tab-separated data into structured JSON. Paste, upload, or drag and drop."
0 commit comments