aboutsummaryrefslogtreecommitdiff
path: root/src/tools/html-wysiwyg-editor/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/html-wysiwyg-editor/index.ts')
-rw-r--r--src/tools/html-wysiwyg-editor/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/html-wysiwyg-editor/index.ts b/src/tools/html-wysiwyg-editor/index.ts
new file mode 100644
index 0000000..985f3c1
--- /dev/null
+++ b/src/tools/html-wysiwyg-editor/index.ts
@@ -0,0 +1,11 @@
+import { Edit } from '@vicons/tabler';
+import { defineTool } from '../tool';
+
+export const tool = defineTool({
+ name: 'Html wysiwyg editor',
+ path: '/html-wysiwyg-editor',
+ description: 'Online HTML editor with feature-rich WYSIWYG editor, get the source code of the content immediately.',
+ keywords: ['html', 'wysiwyg', 'editor', 'p', 'ul', 'ol', 'converter', 'live'],
+ component: () => import('./html-wysiwyg-editor.vue'),
+ icon: Edit,
+});