2025-07-08 12:56:31 -07:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('xml', {
|
|
|
|
|
name: 'XML Beautifier',
|
|
|
|
|
path: 'xml-beautifier',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols:code',
|
2025-07-08 12:56:31 -07:00
|
|
|
description:
|
2025-07-12 23:02:35 -07:00
|
|
|
'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.name',
|
|
|
|
|
description: 'xml.xmlBeautifier.description',
|
|
|
|
|
shortDescription: 'xml.xmlBeautifier.shortDescription'
|
|
|
|
|
}
|
2025-07-08 12:56:31 -07:00
|
|
|
});
|