Files
omni-tools/src/pages/tools/json/json-to-xml/meta.ts

19 lines
622 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('json', {
2025-07-12 23:02:35 -07:00
name: 'JSON to XML',
path: 'json-to-xml',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols:code',
description:
'Convert JSON data to XML format. Transform structured JSON objects into well-formed XML documents.',
shortDescription: 'Convert JSON to XML format',
keywords: ['json', 'xml', 'convert', 'transform'],
component: lazy(() => import('./index')),
i18n: {
2025-07-13 11:25:05 +01:00
name: 'json:jsonToXml.title',
description: 'json:jsonToXml.description',
shortDescription: 'json:jsonToXml.shortDescription'
2025-07-12 23:02:35 -07:00
}
});