mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
11 lines
426 B
TypeScript
11 lines
426 B
TypeScript
import { Code } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Escape html entities',
|
|
path: '/html-entities',
|
|
description: 'Escape or unescape html entities (replace <,>, &, " and \' to their html version)',
|
|
keywords: ['html', 'entities', 'escape', 'unescape', 'special', 'characters', 'tags'],
|
|
component: () => import('./html-entities.vue'),
|
|
icon: Code,
|
|
});
|