diff options
Diffstat (limited to 'src/tools/html-entities/index.ts')
-rw-r--r-- | src/tools/html-entities/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/html-entities/index.ts b/src/tools/html-entities/index.ts index 5d3b850..4907dc6 100644 --- a/src/tools/html-entities/index.ts +++ b/src/tools/html-entities/index.ts @@ -1,11 +1,11 @@ import { Code } from '@vicons/tabler'; -import type { ITool } from '../tool'; +import { defineTool } from '../tool'; -export const tool: ITool = { +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, -}; +}); |