mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-06 00:44:57 +05:30
feat: text-statistic (readability improvements)
This commit is contained in:
parent
d7d5f81d57
commit
b5a67499d5
1 changed files with 6 additions and 6 deletions
|
|
@ -257,20 +257,20 @@ export default function Truncate({
|
||||||
<CheckboxWithDesc
|
<CheckboxWithDesc
|
||||||
checked={values.wordCount}
|
checked={values.wordCount}
|
||||||
onChange={(value) => updateField('wordCount', value)}
|
onChange={(value) => updateField('wordCount', value)}
|
||||||
title="Words Frequency"
|
title="Word Frequency Analysis"
|
||||||
description="Add the word frequency statistics"
|
description="Count how often each word appears in the text"
|
||||||
/>
|
/>
|
||||||
<CheckboxWithDesc
|
<CheckboxWithDesc
|
||||||
checked={values.characterCount}
|
checked={values.characterCount}
|
||||||
onChange={(value) => updateField('characterCount', value)}
|
onChange={(value) => updateField('characterCount', value)}
|
||||||
title="Characters Frequency"
|
title="Character Frequency Analysis"
|
||||||
description="Add the character frequency statistics"
|
description="Count how often each character appears in the text"
|
||||||
/>
|
/>
|
||||||
<CheckboxWithDesc
|
<CheckboxWithDesc
|
||||||
checked={values.emptyLines}
|
checked={values.emptyLines}
|
||||||
onChange={(value) => updateField('emptyLines', value)}
|
onChange={(value) => updateField('emptyLines', value)}
|
||||||
title="Empty Lines"
|
title="Include Empty Lines"
|
||||||
description="Include empty lines in the count"
|
description="Include blank lines when counting lines"
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue