blob: fe28d3ae13dd2b48f0d4d91f5bb9455d5bf78df3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Code } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'XML formatter',
path: '/xml-formatter',
description: 'Prettify your XML string to a human friendly readable format.',
keywords: ['xml', 'prettify', 'format'],
component: () => import('./xml-formatter.vue'),
icon: Code,
createdAt: new Date('2023-06-17'),
});
|