diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-05-17 20:18:37 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-17 20:18:37 -0400 | 
| commit | 76276e78dac387df66384a10bc1179c90ebd93fe (patch) | |
| tree | ba11d7bf4375aa76ae45646b45953df9e71f1d78 /ext/js/data/anki-note-data-creator.js | |
| parent | 12451eaf61281e588fb8ef5f911d604ba34aca92 (diff) | |
Expose search query to anki template renderer (#1686)
* Expose query and fullQuery to Anki context
* Add {search-query} marker
* Update test data
* Update tests
* Wrap search query in multiLine
Diffstat (limited to 'ext/js/data/anki-note-data-creator.js')
| -rw-r--r-- | ext/js/data/anki-note-data-creator.js | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/js/data/anki-note-data-creator.js b/ext/js/data/anki-note-data-creator.js index d1bbec18..4cf62788 100644 --- a/ext/js/data/anki-note-data-creator.js +++ b/ext/js/data/anki-note-data-creator.js @@ -141,9 +141,11 @@ class AnkiNoteDataCreator {      }      _getPublicContext(context) { -        let {documentTitle} = this._asObject(context); +        let {documentTitle, query, fullQuery} = this._asObject(context);          if (typeof documentTitle !== 'string') { documentTitle = ''; }          return { +            query, +            fullQuery,              document: {                  title: documentTitle              }  |