mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
455 B
TypeScript
14 lines
455 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('xml', {
|
||
|
|
name: 'XML Beautifier',
|
||
|
|
path: 'xml-beautifier',
|
||
|
|
icon: 'mdi:format-align-left',
|
||
|
|
description:
|
||
|
|
'Beautify and reformat XML for improved readability and structure.',
|
||
|
|
shortDescription: 'Beautify XML for readability.',
|
||
|
|
keywords: ['xml', 'beautify', 'format', 'pretty', 'indent'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|