From d2ffdcf2f69c3fb7887f6d174a23a304a771b745 Mon Sep 17 00:00:00 2001 From: Chesterkxng Date: Tue, 27 May 2025 17:05:04 +0200 Subject: [PATCH] feat: text-statistic (meta) --- src/pages/tools/string/statistic/meta.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/pages/tools/string/statistic/meta.ts diff --git a/src/pages/tools/string/statistic/meta.ts b/src/pages/tools/string/statistic/meta.ts new file mode 100644 index 0000000..18bc663 --- /dev/null +++ b/src/pages/tools/string/statistic/meta.ts @@ -0,0 +1,15 @@ +import { defineTool } from '@tools/defineTool'; +import { lazy } from 'react'; + +export const tool = defineTool('string', { + name: 'Text Statistics', + path: 'statistics', + shortDescription: 'Get statistics about your text', + icon: 'fluent:document-landscape-data-24-filled', + description: + 'Load your text in the input form on the left and you will automatically get statistics about your text on the right.', + longDescription: + 'This tool provides various statistics about the text you input, including the number of lines, words, and characters. You can also choose to include empty lines in the count. it can count words and characters based on custom delimiters, allowing for flexible text analysis. Additionally, it can provide frequency statistics for words and characters, helping you understand the distribution of terms in your text.', + keywords: ['text', 'statistics', 'count', 'lines', 'words', 'characters'], + component: lazy(() => import('./index')) +});