2024-09-11 23:10:28 +02:00
import { Search } from '@vicons/tabler' ;
import { defineTool } from '../tool' ;
export const tool = defineTool ( {
2024-09-13 09:28:31 +02:00
name : 'Smart Text Replacer and Linebreaker' ,
2024-09-11 23:10:28 +02:00
path : '/smart-text-replacer' ,
2024-09-13 09:28:31 +02:00
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' ,
2024-09-11 23:10:28 +02:00
keywords : [ 'smart' , 'text-replacer' , 'linebreak' , 'remove' , 'add' , 'split' , 'search' , 'replace' ] ,
component : ( ) = > import ( './smart-text-replacer.vue' ) ,
icon : Search ,
createdAt : new Date ( '2024-04-03' ) ,
} ) ;