aboutsummaryrefslogtreecommitdiff
path: root/src/tools/slugify-string/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/slugify-string/index.ts')
-rw-r--r--src/tools/slugify-string/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/slugify-string/index.ts b/src/tools/slugify-string/index.ts
new file mode 100644
index 0000000..8dabcdb
--- /dev/null
+++ b/src/tools/slugify-string/index.ts
@@ -0,0 +1,11 @@
+import { AbcRound } from '@vicons/material';
+import { defineTool } from '../tool';
+
+export const tool = defineTool({
+ name: 'Slugify string',
+ path: '/slugify-string',
+ description: 'Make a string url, filename and id safe.',
+ keywords: ['slugify', 'string', 'escape', 'emoji', 'special', 'character', 'space', 'trim'],
+ component: () => import('./slugify-string.vue'),
+ icon: AbcRound,
+});