Interface: DictionaryDefinitionInlineFlagWords
Defined in: DictionaryDefinition.ts:252
Extends
DictionaryDefinitionInlineBase.Required<Pick<InlineDictionary,"flagWords">>
Properties
btrie?
optionalbtrie?:string
Defined in: DictionaryDefinition.ts:195
Not used
Inherited from
DictionaryDefinitionInlineBase.btrie
description?
optionaldescription?:string
Defined in: DictionaryDefinition.ts:31
Optional description of the contents / purpose of the dictionary.
Inherited from
DictionaryDefinitionBase.description
file?
optionalfile?:undefined
Defined in: DictionaryDefinition.ts:201
Not used
Inherited from
DictionaryDefinitionInlineBase.file
flagWords
flagWords:
string[]
Defined in: DictionaryDefinition.ts:254
List of words to always be considered incorrect. Words found in flagWords override words.
Format of flagWords
- single word entry -
word - with suggestions -
word:suggestionorword->suggestion, suggestions
Example:
"flagWords": [
"color: colour",
"incase: in case, encase",
"canot->cannot",
"cancelled->canceled"
]
Case Sensitivity:
A word is flagged if it exactly matches an entry, or if its lowercased form exactly matches an entry. In practice this means:
- An entry written in all lowercase (e.g.
avocado) flags that word in any casing found in the document —avocado,Avocado, andAVOCADOare all flagged. - An entry containing any uppercase letter (e.g.
Avocado) only flags that exact casing —avocadoandAVOCADOare not flagged.
Overrides
DictionaryDefinitionInlineBase.flagWords
ignoreForbiddenWords?
optionalignoreForbiddenWords?:undefined
Defined in: DictionaryDefinition.ts:224
Not used
Inherited from
DictionaryDefinitionInlineBase.ignoreForbiddenWords
ignoreWords?
optionalignoreWords?:string[]
Defined in: InlineDictionary.ts:40
List of words to be ignored. An ignored word will not show up as an error, even if it is
also in the flagWords.
Inherited from
DictionaryDefinitionInlineBase.ignoreWords
kind?
optionalkind?:DictionaryKind
Defined in: DictionaryDefinition.ts:218
Inherited from
DictionaryDefinitionInlineBase.kind
name
name:
string
Defined in: DictionaryDefinition.ts:26
This is the name of a dictionary.
Name Format:
- Must contain at least 1 number or letter.
- Spaces are allowed.
- Leading and trailing space will be removed.
- Names ARE case-sensitive.
- Must not contain
*,!,;,,,{,},[,],~.
Inherited from
noSuggest?
optionalnoSuggest?:undefined
Defined in: DictionaryDefinition.ts:213
Use ignoreWords instead.
Inherited from
DictionaryDefinitionInlineBase.noSuggest
path?
optionalpath?:undefined
Defined in: DictionaryDefinition.ts:189
Not used
Inherited from
DictionaryDefinitionInlineBase.path
repMap?
optionalrepMap?:undefined
Defined in: DictionaryDefinition.ts:235
Inherited from
DictionaryDefinitionInlineBase.repMap
suggestWords?
optionalsuggestWords?:string[]
Defined in: InlineDictionary.ts:55
A list of suggested replacements for words. Suggested words provide a way to make preferred suggestions on word replacements. To hint at a preferred change, but not to require it.
Format of suggestWords
- Single suggestion (possible auto fix)
word: suggestionword->suggestion
- Multiple suggestions (not auto fixable)
word: first, second, thirdword->first, second, third
Inherited from
DictionaryDefinitionInlineBase.suggestWords
supportNonStrictSearches?
optionalsupportNonStrictSearches?:boolean
Defined in: DictionaryDefinition.ts:97
Strip case and accents to allow for case insensitive searches and words without accents.
Note: this setting only applies to word lists. It has no-impact on trie dictionaries.
Default
true
Inherited from
DictionaryDefinitionBase.supportNonStrictSearches
type?
optionaltype?:undefined
Defined in: DictionaryDefinition.ts:207
Not used
Inherited from
DictionaryDefinitionInlineBase.type
useCompounds?
optionaluseCompounds?:undefined
Defined in: DictionaryDefinition.ts:230
Not used
Inherited from
DictionaryDefinitionInlineBase.useCompounds
words?
optionalwords?:string[]
Defined in: InlineDictionary.ts:5
List of words to be considered correct.
Inherited from
DictionaryDefinitionInlineBase.words