aboutsummaryrefslogtreecommitdiff
path: root/src/tools/html-entities/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-22 20:13:37 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-22 20:18:12 +0200
commit8e29a97404ea0aa9b9b576656358c8c276b6f992 (patch)
tree34a7598c0a010e3bfcbbf10b7e3f5079a21255d4 /src/tools/html-entities/index.ts
parentebf6695d2533db6f37b24dc7d338f422c551c8cb (diff)
downloadit-tools-8e29a97404ea0aa9b9b576656358c8c276b6f992.tar.gz
it-tools-8e29a97404ea0aa9b9b576656358c8c276b6f992.tar.zst
it-tools-8e29a97404ea0aa9b9b576656358c8c276b6f992.zip
feat(new-tool): html entities escape/unescape
Diffstat (limited to 'src/tools/html-entities/index.ts')
-rw-r--r--src/tools/html-entities/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/html-entities/index.ts b/src/tools/html-entities/index.ts
new file mode 100644
index 0000000..530b674
--- /dev/null
+++ b/src/tools/html-entities/index.ts
@@ -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,
+}; \ No newline at end of file