From 95e1a4ed6dc459c608e2ccceb9e5acde28fb74cd Mon Sep 17 00:00:00 2001 From: Chesterkxng Date: Sun, 30 Mar 2025 13:07:35 +0000 Subject: [PATCH] feat: csv-to-tsv (meta file) --- src/pages/tools/csv/csv-to-tsv/meta.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/pages/tools/csv/csv-to-tsv/meta.ts diff --git a/src/pages/tools/csv/csv-to-tsv/meta.ts b/src/pages/tools/csv/csv-to-tsv/meta.ts new file mode 100644 index 0000000..eb2fb18 --- /dev/null +++ b/src/pages/tools/csv/csv-to-tsv/meta.ts @@ -0,0 +1,13 @@ +import { defineTool } from '@tools/defineTool'; +import { lazy } from 'react'; + +export const tool = defineTool('csv', { + name: 'Convert CSV to TSV', + path: 'csv-to-tsv', + icon: 'codicon:keyboard-tab', + description: + 'Upload your CSV file in the form below and it will automatically get converted to a TSV file. In the tool options, you can customize the input CSV format – specify the field delimiter, quotation character, and comment symbol, as well as skip empty CSV lines, and choose whether to preserve CSV column headers.', + shortDescription: 'Convert CSV data to TSV format', + keywords: ['csv', 'tsv', 'convert', 'transform', 'parse'], + component: lazy(() => import('./index')) +});