blob: e292f087ee14f7787da91179e9cf17750662a554 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Code } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.html-entities.title'),
path: '/html-entities',
description: translate('tools.html-entities.description'),
keywords: ['html', 'entities', 'escape', 'unescape', 'special', 'characters', 'tags'],
component: () => import('./html-entities.vue'),
icon: Code,
});
|