diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2019-10-30 03:58:24 +0200 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2019-11-23 17:40:52 +0200 |
commit | c35a05cd62d43ff435c022a353de55510b020277 (patch) | |
tree | eed5ca7f70aed856ec2be69b39013202dfcba596 /ext/fg/js/api.js | |
parent | f63e8e4be0e7bdb1a2e45e349bf667ea7ca4adab (diff) |
add kana to text
Diffstat (limited to 'ext/fg/js/api.js')
-rw-r--r-- | ext/fg/js/api.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/fg/js/api.js b/ext/fg/js/api.js index 945ba076..cc1e0e90 100644 --- a/ext/fg/js/api.js +++ b/ext/fg/js/api.js @@ -29,6 +29,10 @@ function apiTermsFind(text, details, optionsContext) { return utilInvoke('termsFind', {text, details, optionsContext}); } +function apiTextParse(text, optionsContext) { + return utilInvoke('textParse', {text, optionsContext}); +} + function apiKanjiFind(text, optionsContext) { return utilInvoke('kanjiFind', {text, optionsContext}); } |