blob: d727196ccf8e7138d5086cd5c0f0b664f9d3a98f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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,
};
|