mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-22 07:29:39 +02:00
fix: missing meta
This commit is contained in:
@@ -6,8 +6,9 @@ export const tool = defineTool('string', {
|
||||
name: 'Quote',
|
||||
path: 'quote',
|
||||
icon: 'proicons:quote',
|
||||
description: '',
|
||||
shortDescription: '',
|
||||
description:
|
||||
'A tool to add quotation marks or custom characters around text. Perfect for formatting strings for code, citations, or stylistic purposes.',
|
||||
shortDescription: 'Add quotes around text easily.',
|
||||
keywords: ['quote'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
@@ -6,8 +6,9 @@ export const tool = defineTool('string', {
|
||||
name: 'Rot13',
|
||||
path: 'rot13',
|
||||
icon: 'hugeicons:encrypt',
|
||||
description: '',
|
||||
shortDescription: '',
|
||||
description:
|
||||
'A simple tool to encode or decode text using the ROT13 cipher, which replaces each letter with the letter 13 positions after it in the alphabet.',
|
||||
shortDescription: 'Encode or decode text using ROT13 cipher.',
|
||||
keywords: ['rot13'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
@@ -6,8 +6,9 @@ export const tool = defineTool('string', {
|
||||
name: 'Rotate',
|
||||
path: 'rotate',
|
||||
icon: 'carbon:rotate',
|
||||
description: '',
|
||||
shortDescription: '',
|
||||
description:
|
||||
'A tool to rotate characters in a string by a specified number of positions. Shift characters left or right while maintaining their relative order.',
|
||||
shortDescription: 'Shift characters in text by position.',
|
||||
keywords: ['rotate'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
Reference in New Issue
Block a user