Files
omni-tools/src/pages/tools/xml/xml-beautifier/meta.ts

19 lines
656 B
TypeScript
Raw Normal View History

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