Files
omni-tools/src/pages/tools/list/unwrap/meta.ts

20 lines
786 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Unwrap',
path: 'unwrap',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols-light:unfold-more',
2025-03-10 00:56:05 +00:00
description:
2025-07-12 23:02:35 -07:00
"World's simplest browser-based utility for unwrapping list items. Input your wrapped list and specify unwrapping criteria to flatten organized items. Perfect for data processing, text manipulation, or extracting content from structured lists.",
shortDescription: 'Unwrap list items from structured format',
keywords: ['unwrap'],
2025-07-12 23:02:35 -07:00
component: lazy(() => import('./index')),
i18n: {
2025-07-13 11:25:05 +01:00
name: 'list:unwrap.title',
description: 'list:unwrap.description',
shortDescription: 'list:unwrap.shortDescription'
2025-07-12 23:02:35 -07:00
}
2024-07-09 23:38:29 +01:00
});