it-tools/src/tools/html-cleaner/index.ts
sharevb c0c5cfda87 feat(new tool): html cleaner
HTML Cleaner (with paste html)
Fix #537
2024-04-06 11:52:42 +02:00

13 lines
338 B
TypeScript

import { BrandHtml5 } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Html cleaner',
path: '/html-cleaner',
description: 'Clean HTML',
keywords: ['html', 'cleaner'],
component: () => import('./html-cleaner.vue'),
icon: BrandHtml5,
createdAt: new Date('2024-02-25'),
});