13 lines
465 B
TypeScript
13 lines
465 B
TypeScript
import { IconCode } from '@tabler/icons-vue';
|
|
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: IconCode,
|
|
});
|