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