Files
omni-tools/src/pages/tools/xml/xml-beautifier/meta.ts
Ibrahima G. Coulibaly 21c4f44d4e fix: misc
2025-07-13 11:25:05 +01:00

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'
}
});