mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
feat: csv-to-tsv (meta file)
This commit is contained in:
13
src/pages/tools/csv/csv-to-tsv/meta.ts
Normal file
13
src/pages/tools/csv/csv-to-tsv/meta.ts
Normal file
@@ -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'))
|
||||
});
|
Reference in New Issue
Block a user