This commit is contained in:
steffenrapp 2024-09-20 19:59:02 +00:00
parent 6b8cfca29d
commit bb7d703cc5
5 changed files with 79 additions and 22 deletions

View file

@ -1,10 +1,11 @@
import { BrandJavascript } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: 'Regex cheatsheet',
name: translate('tools.regex-memo.title'),
path: '/regex-memo',
description: 'Javascript Regex/Regular Expression cheatsheet',
description: translate('tools.regex-memo.description'),
keywords: ['regex', 'regular', 'expression', 'javascript', 'memo', 'cheatsheet'],
component: () => import('./regex-memo.vue'),
icon: BrandJavascript,