diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2020-01-25 03:29:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-25 03:29:55 +0200 |
commit | 7357eaf07a899a20de715026de7e4baaa37d4539 (patch) | |
tree | b8b3aa4506de0c42bc596c1a62e1d2d5c8f3641d /ext/bg/data/options-schema.json | |
parent | be645c2c9856b3723ba1192132d2947d4f13eb9a (diff) | |
parent | fa4004437d8ca5aff34c31f61ce8aea485be24d1 (diff) |
Merge pull request #330 from siikamiika/query-parser-helper-disabling
Query parser helper disabling
Diffstat (limited to 'ext/bg/data/options-schema.json')
-rw-r--r-- | ext/bg/data/options-schema.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index c65bb1e9..a20a0619 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -419,6 +419,7 @@ "enableScanningParser", "enableMecabParser", "selectedParser", + "termSpacing", "readingMode" ], "properties": { @@ -434,9 +435,13 @@ "type": ["string", "null"], "default": null }, + "termSpacing": { + "type": "boolean", + "default": true + }, "readingMode": { "type": "string", - "enum": ["hiragana", "katakana", "romaji"], + "enum": ["hiragana", "katakana", "romaji", "none"], "default": "hiragana" } } |