mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 05:59:34 +02:00
feat(xml): add XML tools for validation, beautification, and viewing
This commit is contained in:
13
src/pages/tools/xml/xml-validator/meta.ts
Normal file
13
src/pages/tools/xml/xml-validator/meta.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { defineTool } from '@tools/defineTool';
|
||||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('xml', {
|
||||
name: 'XML Validator',
|
||||
path: 'xml-validator',
|
||||
icon: 'mdi:check-decagram',
|
||||
description:
|
||||
'Validate XML files or strings to ensure they are well-formed and error-free.',
|
||||
shortDescription: 'Validate XML for errors.',
|
||||
keywords: ['xml', 'validate', 'check', 'syntax', 'error'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
Reference in New Issue
Block a user