Anki card selected text (#1809)
* Add support for injecting the text selection into Anki cards * Add selection-text * Upgrade to add {selection-text} * Update descriptions * Update test data
This commit is contained in:
parent
9935e154f1
commit
315dc425e4
@ -177,6 +177,7 @@ Flashcard fields can be configured with the following steps:
|
|||||||
`{reading}` | Kana reading for the term (empty for terms where the expression is the reading).
|
`{reading}` | Kana reading for the term (empty for terms where the expression is the reading).
|
||||||
`{screenshot}` | Screenshot of the web page taken at the time the term was added.
|
`{screenshot}` | Screenshot of the web page taken at the time the term was added.
|
||||||
`{search-query}` | The full search query shown on the search page.
|
`{search-query}` | The full search query shown on the search page.
|
||||||
|
`{selection-text}` | The selected text on the search page or popup.
|
||||||
`{sentence}` | Sentence, quote, or phrase that the term appears in from the source content.
|
`{sentence}` | Sentence, quote, or phrase that the term appears in from the source content.
|
||||||
`{tags}` | Grammar and usage tags providing information about the term (unavailable in *grouped* mode).
|
`{tags}` | Grammar and usage tags providing information about the term (unavailable in *grouped* mode).
|
||||||
`{url}` | Address of the web page in which the term appeared in.
|
`{url}` | Address of the web page in which the term appeared in.
|
||||||
@ -199,6 +200,7 @@ Flashcard fields can be configured with the following steps:
|
|||||||
`{onyomi}` | Onyomi (Chinese reading) for the kanji expressed as hiragana.
|
`{onyomi}` | Onyomi (Chinese reading) for the kanji expressed as hiragana.
|
||||||
`{screenshot}` | Screenshot of the web page taken at the time the kanji was added.
|
`{screenshot}` | Screenshot of the web page taken at the time the kanji was added.
|
||||||
`{search-query}` | The full search query shown on the search page.
|
`{search-query}` | The full search query shown on the search page.
|
||||||
|
`{selection-text}` | The selected text on the search page or popup.
|
||||||
`{sentence}` | Sentence, quote, or phrase that the character appears in from the source content.
|
`{sentence}` | Sentence, quote, or phrase that the character appears in from the source content.
|
||||||
`{stroke-count}` | Number of strokes that the kanji character has.
|
`{stroke-count}` | Number of strokes that the kanji character has.
|
||||||
`{url}` | Address of the web page in which the kanji appeared in.
|
`{url}` | Address of the web page in which the kanji appeared in.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
{{#*inline "selection-text"}}
|
||||||
|
{{~#if (hasMedia "selectionText")}}{{#getMedia "selectionText" format="text"}}{{/getMedia}}{{/if~}}
|
||||||
|
{{/inline}}
|
||||||
|
|
||||||
{{<<<<<<<}}
|
{{<<<<<<<}}
|
||||||
{{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{/each}}
|
{{#each glossary}}{{#multiLine}}{{.}}{{/multiLine}}{{/each}}
|
||||||
{{=======}}
|
{{=======}}
|
||||||
|
@ -378,4 +378,8 @@
|
|||||||
{{~#multiLine}}{{context.fullQuery}}{{/multiLine~}}
|
{{~#multiLine}}{{context.fullQuery}}{{/multiLine~}}
|
||||||
{{/inline}}
|
{{/inline}}
|
||||||
|
|
||||||
|
{{#*inline "selection-text"}}
|
||||||
|
{{~#if (hasMedia "selectionText")}}{{#getMedia "selectionText" format="text"}}{{/getMedia}}{{/if~}}
|
||||||
|
{{/inline}}
|
||||||
|
|
||||||
{{~> (lookup . "marker") ~}}
|
{{~> (lookup . "marker") ~}}
|
||||||
|
@ -283,6 +283,7 @@ class AnkiNoteBuilder {
|
|||||||
let injectScreenshot = false;
|
let injectScreenshot = false;
|
||||||
let injectClipboardImage = false;
|
let injectClipboardImage = false;
|
||||||
let injectClipboardText = false;
|
let injectClipboardText = false;
|
||||||
|
let injectSelectionText = false;
|
||||||
const dictionaryMediaDetails = [];
|
const dictionaryMediaDetails = [];
|
||||||
for (const requirement of requirements) {
|
for (const requirement of requirements) {
|
||||||
const {type} = requirement;
|
const {type} = requirement;
|
||||||
@ -291,6 +292,7 @@ class AnkiNoteBuilder {
|
|||||||
case 'screenshot': injectScreenshot = true; break;
|
case 'screenshot': injectScreenshot = true; break;
|
||||||
case 'clipboardImage': injectClipboardImage = true; break;
|
case 'clipboardImage': injectClipboardImage = true; break;
|
||||||
case 'clipboardText': injectClipboardText = true; break;
|
case 'clipboardText': injectClipboardText = true; break;
|
||||||
|
case 'selectionText': injectSelectionText = true; break;
|
||||||
case 'dictionaryMedia':
|
case 'dictionaryMedia':
|
||||||
{
|
{
|
||||||
const {dictionary, path} = requirement;
|
const {dictionary, path} = requirement;
|
||||||
@ -323,7 +325,8 @@ class AnkiNoteBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Inject media
|
// Inject media
|
||||||
const {audioFileName, screenshotFileName, clipboardImageFileName, clipboardText, dictionaryMedia: dictionaryMediaArray, errors} = await yomichan.api.injectAnkiNoteMedia(
|
const selectionText = injectSelectionText ? this._getSelectionText() : null;
|
||||||
|
const injectedMedia = await yomichan.api.injectAnkiNoteMedia(
|
||||||
timestamp,
|
timestamp,
|
||||||
dictionaryEntryDetails,
|
dictionaryEntryDetails,
|
||||||
audioDetails,
|
audioDetails,
|
||||||
@ -331,6 +334,7 @@ class AnkiNoteBuilder {
|
|||||||
clipboardDetails,
|
clipboardDetails,
|
||||||
dictionaryMediaDetails
|
dictionaryMediaDetails
|
||||||
);
|
);
|
||||||
|
const {audioFileName, screenshotFileName, clipboardImageFileName, clipboardText, dictionaryMedia: dictionaryMediaArray, errors} = injectedMedia;
|
||||||
|
|
||||||
// Format results
|
// Format results
|
||||||
const dictionaryMedia = {};
|
const dictionaryMedia = {};
|
||||||
@ -348,8 +352,13 @@ class AnkiNoteBuilder {
|
|||||||
screenshot: (typeof screenshotFileName === 'string' ? {fileName: screenshotFileName} : null),
|
screenshot: (typeof screenshotFileName === 'string' ? {fileName: screenshotFileName} : null),
|
||||||
clipboardImage: (typeof clipboardImageFileName === 'string' ? {fileName: clipboardImageFileName} : null),
|
clipboardImage: (typeof clipboardImageFileName === 'string' ? {fileName: clipboardImageFileName} : null),
|
||||||
clipboardText: (typeof clipboardText === 'string' ? {text: clipboardText} : null),
|
clipboardText: (typeof clipboardText === 'string' ? {text: clipboardText} : null),
|
||||||
|
selectionText: (typeof selectionText === 'string' ? {text: selectionText} : null),
|
||||||
dictionaryMedia
|
dictionaryMedia
|
||||||
};
|
};
|
||||||
return {media, errors};
|
return {media, errors};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_getSelectionText() {
|
||||||
|
return document.getSelection().toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -854,6 +854,7 @@ class OptionsUtil {
|
|||||||
// Version 13 changes:
|
// Version 13 changes:
|
||||||
// Handlebars templates updated to use formatGlossary.
|
// Handlebars templates updated to use formatGlossary.
|
||||||
// Handlebars templates updated to use new media format.
|
// Handlebars templates updated to use new media format.
|
||||||
|
// Added {selection-text} field marker.
|
||||||
await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v13.handlebars');
|
await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v13.handlebars');
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
@ -102,6 +102,7 @@ class AnkiController {
|
|||||||
'reading',
|
'reading',
|
||||||
'screenshot',
|
'screenshot',
|
||||||
'search-query',
|
'search-query',
|
||||||
|
'selection-text',
|
||||||
'sentence',
|
'sentence',
|
||||||
'tags',
|
'tags',
|
||||||
'url'
|
'url'
|
||||||
@ -121,6 +122,7 @@ class AnkiController {
|
|||||||
'onyomi',
|
'onyomi',
|
||||||
'screenshot',
|
'screenshot',
|
||||||
'search-query',
|
'search-query',
|
||||||
|
'selection-text',
|
||||||
'sentence',
|
'sentence',
|
||||||
'stroke-count',
|
'stroke-count',
|
||||||
'tags',
|
'tags',
|
||||||
|
@ -78,6 +78,7 @@ class TemplateRendererMediaProvider {
|
|||||||
case 'screenshot': return this._getSimpleMediaData(media, 'screenshot');
|
case 'screenshot': return this._getSimpleMediaData(media, 'screenshot');
|
||||||
case 'clipboardImage': return this._getSimpleMediaData(media, 'clipboardImage');
|
case 'clipboardImage': return this._getSimpleMediaData(media, 'clipboardImage');
|
||||||
case 'clipboardText': return this._getSimpleMediaData(media, 'clipboardText');
|
case 'clipboardText': return this._getSimpleMediaData(media, 'clipboardText');
|
||||||
|
case 'selectionText': return this._getSimpleMediaData(media, 'selectionText');
|
||||||
case 'dictionaryMedia': return this._getDictionaryMedia(media, args[1], namedArgs);
|
case 'dictionaryMedia': return this._getDictionaryMedia(media, args[1], namedArgs);
|
||||||
default: return null;
|
default: return null;
|
||||||
}
|
}
|
||||||
|
@ -2858,6 +2858,10 @@
|
|||||||
<td><code class="anki-field-marker">{search-query}</code></td>
|
<td><code class="anki-field-marker">{search-query}</code></td>
|
||||||
<td>The full search query shown on the search page.</td>
|
<td>The full search query shown on the search page.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code class="anki-field-marker">{selection-text}</code></td>
|
||||||
|
<td>The selected text on the search page or popup.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code class="anki-field-marker">{sentence}</code></td>
|
<td><code class="anki-field-marker">{sentence}</code></td>
|
||||||
<td>Sentence, quote, or phrase that the term or kanji appears in from the source content.</td>
|
<td>Sentence, quote, or phrase that the term or kanji appears in from the source content.</td>
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
"onyomi": "ダ, ダアス",
|
"onyomi": "ダ, ダアス",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"stroke-count": "Stroke count: Unknown",
|
"stroke-count": "Stroke count: Unknown",
|
||||||
"tags": "",
|
"tags": "",
|
||||||
@ -40,6 +41,7 @@
|
|||||||
"onyomi": "",
|
"onyomi": "",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix込cloze-suffix",
|
"sentence": "cloze-prefix込cloze-suffix",
|
||||||
"stroke-count": "Stroke count: Unknown",
|
"stroke-count": "Stroke count: Unknown",
|
||||||
"tags": "",
|
"tags": "",
|
||||||
@ -78,6 +80,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -106,6 +109,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -139,6 +143,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打つcloze-suffix",
|
"sentence": "cloze-prefix打つcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -167,6 +172,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打つcloze-suffix",
|
"sentence": "cloze-prefix打つcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -195,6 +201,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打つcloze-suffix",
|
"sentence": "cloze-prefix打つcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -223,6 +230,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打つcloze-suffix",
|
"sentence": "cloze-prefix打つcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -251,6 +259,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -279,6 +288,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -312,6 +322,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -340,6 +351,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -368,6 +380,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -396,6 +409,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -424,6 +438,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -452,6 +467,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -480,6 +496,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -508,6 +525,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -536,6 +554,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -564,6 +583,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -597,6 +617,7 @@
|
|||||||
"reading": "がぞう",
|
"reading": "がぞう",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix画像cloze-suffix",
|
"sentence": "cloze-prefix画像cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -630,6 +651,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixだcloze-suffix",
|
"sentence": "cloze-prefixだcloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -663,6 +685,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixダースcloze-suffix",
|
"sentence": "cloze-prefixダースcloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -696,6 +719,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうつcloze-suffix",
|
"sentence": "cloze-prefixうつcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -724,6 +748,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうつcloze-suffix",
|
"sentence": "cloze-prefixうつcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -757,6 +782,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixぶつcloze-suffix",
|
"sentence": "cloze-prefixぶつcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -785,6 +811,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixぶつcloze-suffix",
|
"sentence": "cloze-prefixぶつcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -818,6 +845,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうちこむcloze-suffix",
|
"sentence": "cloze-prefixうちこむcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -846,6 +874,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうちこむcloze-suffix",
|
"sentence": "cloze-prefixうちこむcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -874,6 +903,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうちcloze-suffix",
|
"sentence": "cloze-prefixうちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -902,6 +932,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうちcloze-suffix",
|
"sentence": "cloze-prefixうちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -935,6 +966,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixぶちこむcloze-suffix",
|
"sentence": "cloze-prefixぶちこむcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -963,6 +995,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixぶちこむcloze-suffix",
|
"sentence": "cloze-prefixぶちこむcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -991,6 +1024,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixぶちcloze-suffix",
|
"sentence": "cloze-prefixぶちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1019,6 +1053,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixぶちcloze-suffix",
|
"sentence": "cloze-prefixぶちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1052,6 +1087,7 @@
|
|||||||
"reading": "がぞう",
|
"reading": "がぞう",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixがぞうcloze-suffix",
|
"sentence": "cloze-prefixがぞうcloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1097,6 +1133,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1125,6 +1162,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1153,6 +1191,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1181,6 +1220,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1209,6 +1249,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1237,6 +1278,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1270,6 +1312,7 @@
|
|||||||
"reading": "うちこむ、ぶちこむ",
|
"reading": "うちこむ、ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
"sentence": "cloze-prefix打ち込むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1298,6 +1341,7 @@
|
|||||||
"reading": "うつ、ぶつ",
|
"reading": "うつ、ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1326,6 +1370,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1354,6 +1399,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1387,6 +1433,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1415,6 +1462,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1443,6 +1491,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1471,6 +1520,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
"sentence": "cloze-prefix打ち込んでいませんでしたcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1499,6 +1549,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1527,6 +1578,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1555,6 +1607,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1583,6 +1636,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打ちcloze-suffix",
|
"sentence": "cloze-prefix打ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1611,6 +1665,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1639,6 +1694,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1672,6 +1728,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1700,6 +1757,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1728,6 +1786,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1756,6 +1815,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
"sentence": "cloze-prefix打(う)ち込(こ)むcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1784,6 +1844,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1812,6 +1873,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1840,6 +1902,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1868,6 +1931,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
"sentence": "cloze-prefix打(う)ちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1896,6 +1960,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1924,6 +1989,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix打cloze-suffix",
|
"sentence": "cloze-prefix打cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1957,6 +2023,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -1985,6 +2052,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2013,6 +2081,7 @@
|
|||||||
"reading": "うちこむ",
|
"reading": "うちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2041,6 +2110,7 @@
|
|||||||
"reading": "ぶちこむ",
|
"reading": "ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)(込)(む)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2069,6 +2139,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2097,6 +2168,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2125,6 +2197,7 @@
|
|||||||
"reading": "うつ",
|
"reading": "うつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2153,6 +2226,7 @@
|
|||||||
"reading": "ぶつ",
|
"reading": "ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
"sentence": "cloze-prefix(打)(ち)cloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2181,6 +2255,7 @@
|
|||||||
"reading": "だ",
|
"reading": "だ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)cloze-suffix",
|
"sentence": "cloze-prefix(打)cloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2209,6 +2284,7 @@
|
|||||||
"reading": "ダース",
|
"reading": "ダース",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefix(打)cloze-suffix",
|
"sentence": "cloze-prefix(打)cloze-suffix",
|
||||||
"tags": "abbr, n",
|
"tags": "abbr, n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2242,6 +2318,7 @@
|
|||||||
"reading": "よむ",
|
"reading": "よむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixtestcloze-suffix",
|
"sentence": "cloze-prefixtestcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2275,6 +2352,7 @@
|
|||||||
"reading": "つよみ",
|
"reading": "つよみ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixつtestcloze-suffix",
|
"sentence": "cloze-prefixつtestcloze-suffix",
|
||||||
"tags": "n",
|
"tags": "n",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2308,6 +2386,7 @@
|
|||||||
"reading": "よむ",
|
"reading": "よむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixtestましたcloze-suffix",
|
"sentence": "cloze-prefixtestましたcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2341,6 +2420,7 @@
|
|||||||
"reading": "うちこむ、ぶちこむ",
|
"reading": "うちこむ、ぶちこむ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうちこむcloze-suffix",
|
"sentence": "cloze-prefixうちこむcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
@ -2369,6 +2449,7 @@
|
|||||||
"reading": "うつ、ぶつ",
|
"reading": "うつ、ぶつ",
|
||||||
"screenshot": "",
|
"screenshot": "",
|
||||||
"search-query": "fullQuery",
|
"search-query": "fullQuery",
|
||||||
|
"selection-text": "",
|
||||||
"sentence": "cloze-prefixうちcloze-suffix",
|
"sentence": "cloze-prefixうちcloze-suffix",
|
||||||
"tags": "vt",
|
"tags": "vt",
|
||||||
"url": "<a href=\"url:\">url:</a>"
|
"url": "<a href=\"url:\">url:</a>"
|
||||||
|
@ -158,6 +158,7 @@ function getFieldMarkers(type) {
|
|||||||
'reading',
|
'reading',
|
||||||
'screenshot',
|
'screenshot',
|
||||||
'search-query',
|
'search-query',
|
||||||
|
'selection-text',
|
||||||
'sentence',
|
'sentence',
|
||||||
'tags',
|
'tags',
|
||||||
'url'
|
'url'
|
||||||
@ -177,6 +178,7 @@ function getFieldMarkers(type) {
|
|||||||
'onyomi',
|
'onyomi',
|
||||||
'screenshot',
|
'screenshot',
|
||||||
'search-query',
|
'search-query',
|
||||||
|
'selection-text',
|
||||||
'sentence',
|
'sentence',
|
||||||
'stroke-count',
|
'stroke-count',
|
||||||
'tags',
|
'tags',
|
||||||
|
@ -959,6 +959,7 @@ async function testFieldTemplatesUpdate(extDir) {
|
|||||||
{{~/if~}}
|
{{~/if~}}
|
||||||
{{/inline}}
|
{{/inline}}
|
||||||
|
|
||||||
|
<<<UPDATE-ADDITIONS>>>
|
||||||
{{~> (lookup . "marker") ~}}`.trimStart()
|
{{~> (lookup . "marker") ~}}`.trimStart()
|
||||||
},
|
},
|
||||||
// hasMedia/getMedia update
|
// hasMedia/getMedia update
|
||||||
@ -1011,6 +1012,7 @@ async function testFieldTemplatesUpdate(extDir) {
|
|||||||
{{~#if (hasMedia "clipboardText")}}{{#getMedia "clipboardText" format="text"}}{{/getMedia}}{{/if~}}
|
{{~#if (hasMedia "clipboardText")}}{{#getMedia "clipboardText" format="text"}}{{/getMedia}}{{/if~}}
|
||||||
{{/inline}}
|
{{/inline}}
|
||||||
|
|
||||||
|
<<<UPDATE-ADDITIONS>>>
|
||||||
{{~> (lookup . "marker") ~}}`.trimStart()
|
{{~> (lookup . "marker") ~}}`.trimStart()
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user