mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
feat: add CSV to XML conversion tool with customizable options
This commit is contained in:
12
src/pages/tools/csv/csv-to-xml/meta.ts
Normal file
12
src/pages/tools/csv/csv-to-xml/meta.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('csv', {
|
||||
name: 'Convert CSV to XML',
|
||||
path: 'csv-to-xml',
|
||||
icon: 'lets-icons:xml-light',
|
||||
description: 'Convert CSV files to XML format with customizable options.',
|
||||
shortDescription: 'Convert CSV data to XML format',
|
||||
keywords: ['csv', 'xml', 'convert', 'transform', 'parse'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
Reference in New Issue
Block a user