it-tools/src/tools/smart-text-replacer/index.ts
2024-09-13 09:28:31 +02:00

12 lines
583 B
TypeScript

import { Search } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Smart Text Replacer and Linebreaker',
path: '/smart-text-replacer',
description: 'Search and replace a word on single or multiple occurrences just like windows notepad search and replace. Also allows to manage linebreaking and text splitting',
keywords: ['smart', 'text-replacer', 'linebreak', 'remove', 'add', 'split', 'search', 'replace'],
component: () => import('./smart-text-replacer.vue'),
icon: Search,
createdAt: new Date('2024-04-03'),
});