feat(new-tool): html entities escape/unescape

This commit is contained in:
Corentin Thomasset 2022-04-22 20:13:37 +02:00
parent ebf6695d25
commit 8e29a97404
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 93 additions and 1 deletions

View file

@ -0,0 +1,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,
};