aboutsummaryrefslogtreecommitdiff
path: root/src/tools/xml-formatter/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/xml-formatter/index.ts')
-rw-r--r--src/tools/xml-formatter/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/xml-formatter/index.ts b/src/tools/xml-formatter/index.ts
new file mode 100644
index 0000000..fe28d3a
--- /dev/null
+++ b/src/tools/xml-formatter/index.ts
@@ -0,0 +1,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'),
+});