mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 15:56:15 -04:00
feat(new tool): Smart Text Replacer and LineBreaks manager
Smart Replacer functionality taken as base from #976 by @utf26 Fixed linebreaking display in Smart Replacer Add linebreaking options Fix #1279 #1194 #616
This commit is contained in:
parent
80e46c9292
commit
2f2b3db115
3 changed files with 227 additions and 1 deletions
13
src/tools/smart-text-replacer/index.ts
Normal file
13
src/tools/smart-text-replacer/index.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { Search } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
import { translate } from '@/plugins/i18n.plugin';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: translate('tools.smart-text-replacer.title'),
|
||||
path: '/smart-text-replacer',
|
||||
description: translate('tools.smart-text-replacer.description'),
|
||||
keywords: ['smart', 'text-replacer', 'linebreak', 'remove', 'add', 'split', 'search', 'replace'],
|
||||
component: () => import('./smart-text-replacer.vue'),
|
||||
icon: Search,
|
||||
createdAt: new Date('2024-04-03'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue