mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
feat(xml): add XML tools for validation, beautification, and viewing
This commit is contained in:
13
src/pages/tools/xml/xml-beautifier/meta.ts
Normal file
13
src/pages/tools/xml/xml-beautifier/meta.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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'))
|
||||
});
|
||||
Reference in New Issue
Block a user