mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 09:29:30 +02:00
19 lines
657 B
TypeScript
19 lines
657 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('xml', {
|
|
name: 'XML Beautifier',
|
|
path: 'xml-beautifier',
|
|
icon: 'material-symbols:code',
|
|
description:
|
|
'Format and beautify XML code with proper indentation and spacing. Make XML files more readable and organized.',
|
|
shortDescription: 'Format and beautify XML code',
|
|
keywords: ['xml', 'beautify', 'format', 'code', 'indent'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'xml:xmlBeautifier.title',
|
|
description: 'xml:xmlBeautifier.description',
|
|
shortDescription: 'xml:xmlBeautifier.shortDescription'
|
|
}
|
|
});
|