mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 07:46:15 -04:00
11 lines
422 B
TypeScript
11 lines
422 B
TypeScript
![]() |
import { Code } from '@vicons/tabler';
|
||
|
import type { ITool } from './../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
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,
|
||
|
};
|