fixing cloze bug

This commit is contained in:
Alex Yatskov 2017-04-08 12:25:18 -07:00
parent c4b1a4a5b4
commit 1ba458ea82
4 changed files with 13 additions and 11 deletions

View File

@ -368,9 +368,6 @@ function ankiFieldsPopulate(element, options) {
], ],
'kanji': [ 'kanji': [
'character', 'character',
'cloze-body',
'cloze-prefix',
'cloze-suffix',
'dictionary', 'dictionary',
'glossary', 'glossary',
'kunyomi', 'kunyomi',

View File

@ -182,7 +182,7 @@ function docSentenceExtract(source, extent) {
quoteStack = []; quoteStack = [];
let endPos = content.length - 1; let endPos = content.length;
for (let i = position; i <= endPos; ++i) { for (let i = position; i <= endPos; ++i) {
const c = content[i]; const c = content[i];
@ -205,7 +205,7 @@ function docSentenceExtract(source, extent) {
} }
const text = content.substring(startPos, endPos); const text = content.substring(startPos, endPos);
const padding = text.length - text.replace(/^\s+/, ''); const padding = text.length - text.replace(/^\s+/, '').length;
return { return {
text: text.trim(), text: text.trim(),

View File

@ -108,7 +108,7 @@ class Display {
if (context) { if (context) {
for (const definition of definitions) { for (const definition of definitions) {
definition.cloze = clozeBuild(context.sentence, definition.source); definition.cloze = clozeBuild(context.sentence);
definition.url = context.url; definition.url = context.url;
} }
} }

View File

@ -22,12 +22,17 @@
*/ */
function clozeBuild(sentence, source) { function clozeBuild(sentence, source) {
return { const result = {
sentence: sentence.text.trim(), sentence: sentence.text.trim()
prefix: sentence.text.substring(0, sentence.offset).trim(),
body: source.trim(),
suffix: sentence.text.substring(sentence.offset + source.length).trim()
}; };
if (source) {
result.prefix = sentence.text.substring(0, sentence.offset).trim();
result.body = source.trim();
result.suffix = sentence.text.substring(sentence.offset + source.length).trim();
}
return result;
} }