aboutsummaryrefslogtreecommitdiff
path: root/src/tools/html-entities/index.ts
diff options
context:
space:
mode:
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