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:
sharevb 2024-09-11 23:10:28 +02:00
parent 80e46c9292
commit 2f2b3db115
3 changed files with 227 additions and 1 deletions

View 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'),
});