-
Notifications
You must be signed in to change notification settings - Fork 3
/
anki-card.el
608 lines (535 loc) · 23.7 KB
/
anki-card.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
;;; anki-card.el -*- lexical-binding: t; -*-
;; Author: Damon Chan <[email protected]>
;; This file is NOT part of GNU Emacs.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'anki-core)
(defcustom anki-variable-pitch t
"Non-nil if a variable pitch face should be used.
Otherwise the default face is used."
:type 'boolean
:group 'anki)
(defcustom anki-text-width nil
"Width filled text shall occupy.
An integer is interpreted as the number of columns. If nil, use
the full window's width. If t, disable filling completely. Note
that this variable only has an effect in Emacs 25.1 or greater."
:type '(choice (integer :tag "Fixed width in characters")
(const :tag "Use the width of the window" nil)
(const :tag "Disable filling" t))
:group 'anki)
(defcustom anki-pre-html-render-hook nil
"Hook run before `anki-render-html'."
:type 'hook
:group 'anki)
(defcustom anki-post-html-render-hook nil
"Hook run after `anki-render-html'."
:type 'hook
:group 'anki)
(defcustom anki-show-unique-buffers nil
"TODO: When non-nil, every entry buffer gets a unique name.
This allows for displaying multiple show buffers at the same
time."
:group 'anki
:type 'boolean)
(defcustom anki-card-mode-parent-mode 'fundamental-mode
"The Parent mode of Anki card Mode.
Support: `org-mode', `fundamental-mode', `shrface-mode'."
:group 'anki
:type 'symbol)
(defcustom anki-audio-player (or (executable-find "aplay")
(executable-find "afplay"))
"Music player used to play sounds."
:group 'anki
:type 'string)
(defcustom anki-pandoc-sleep-time 0.2
"When testing Pandoc the first time it's used in a session, wait this long for Pandoc to start.
Normally this should not need to be changed, but if Pandoc takes
unusually long to start on your system (which it seems to on
FreeBSD, for some reason), you may need to increase this."
:type 'float)
(defconst anki--pandoc-no-wrap-option nil
"Option to pass to Pandoc to disable wrapping.
Pandoc >= 1.16 deprecates `--no-wrap' in favor of
`--wrap=none'.")
(defcustom anki-pandoc-replacements
(list (cons (rx "") "")
(cons (rx "%20") " ")
(cons "^\n$" "")
(cons "\\\\" ""))
"List of alists pairing regular expressions with a string that should replace each one.
Used to clean output from Pandoc."
:type '(alist :key-type string
:value-type string))
(defvar anki-shr-rendering-functions
'(;; default function uses url-retrieve and fails on local images
(img . anki-render-img)
;; titles are rendered *inside* the document by default
)
"Alist of rendering functions used with `shr-render-region'.")
(defvar anki-card-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "q" #'anki-card-quit)
(define-key map "r" #'anki-replay-audio)
map)
"Keymap for `anki-card-mode'.")
(defvar anki-shr-map
(let ((map (copy-keymap anki-card-mode-map)))
(set-keymap-parent map shr-map)
map))
(define-derived-mode anki-card-mode fundamental-mode "anki-card"
"Mode for displaying book entry details.
\\{anki-card-mode-map}"
(setq buffer-read-only t)
;; (buffer-disable-undo)
)
(defun anki-show--buffer-name (entry)
"Return the appropriate buffer name for ENTRY.
The result depends on the value of `anki-show-unique-buffers'."
(if anki-show-unique-buffers
(format "*anki-card-<%s>*"
(gethash 'id entry))
"*anki-card*"))
(define-derived-mode anki-card-mode fundamental-mode "anki-card"
"Mode for displaying book entry details.
\\{anki-card-mode-map}"
(setq buffer-read-only t)
(buffer-disable-undo))
(defcustom anki-show-card-switch #'switch-to-buffer-other-window
"Function used to display the calibre entry buffer."
:group 'anki
:type '(choice (function-item switch-to-buffer-other-window)
(function-item switch-to-buffer)
(function-item pop-to-buffer)
function))
(defun anki-show-card (entry &optional switch)
"Display ENTRY in the current buffer.
Optional argument SWITCH to switch to *anki-search* buffer to other window."
(unless (eq major-mode 'anki-card-mode)
(when (get-buffer (anki-show--buffer-name entry))
(kill-buffer (anki-show--buffer-name entry))))
(let* ((buff (get-buffer-create (anki-show--buffer-name entry)))
(id (gethash 'id entry)) ; card id
(flds (gethash 'flds entry)) ; note fields
(model (anki-core-get-model (gethash 'mid entry))) ; model hash table
(model-names (anki-models-names model))
(original (point))
(file-map (make-sparse-keymap))
beg end)
(let ((inhibit-read-only t))
(with-current-buffer buff
(anki-card-mode)
(define-key file-map [mouse-1] 'anki-file-mouse-1)
(define-key file-map [mouse-3] 'anki-file-mouse-3)
(erase-buffer)
(setq beg (point))
;; (insert id)
(insert "\n")
(setq end (point))
(put-text-property beg end 'anki-card entry)
(dolist (field (cl-mapcar 'cons model-names (split-string flds "\037")))
(let* ((mf (car field))
(cf (cdr field)))
(insert (format "<div><h1>%s</h1><p>%s</p></div>" mf cf))))
(anki-field-replace-media)
(if (eq anki-card-mode-parent-mode 'org-mode)
(anki-render-org)
(anki-render-html))
(setq anki-show-card entry)
(goto-char (point-min))
(cond ((eq anki-card-mode-parent-mode 'org-mode)
(org-mode))
((eq anki-card-mode-parent-mode 'shrface-mode)
(setq anki-shr-rendering-functions (append anki-shr-rendering-functions shr-external-rendering-functions))
(shrface-mode))
((eq anki-card-mode-parent-mode 'fundamental-mode)
(fundamental-mode))
(t
(fundamental-mode)))))
(unless (eq major-mode 'anki-card-mode)
(funcall anki-show-card-switch buff)
(when switch
(switch-to-buffer-other-window (set-buffer (anki-search--buffer-name)))
(goto-char original)))))
(defun anki-show-front (entry &optional switch)
"Display ENTRY in the current buffer.
Optional argument SWITCH to switch to *anki-search* buffer to other window."
(unless (eq major-mode 'anki-card-mode)
(when (get-buffer (anki-show--buffer-name entry))
(kill-buffer (anki-show--buffer-name entry))))
(let* ((buff (get-buffer-create (anki-show--buffer-name entry)))
(id (gethash 'id entry)) ; card id
(flds (gethash 'flds entry)) ; note fields
(model (anki-core-get-model (gethash 'mid entry))) ; model hash table
(css (gethash "css" model))
(model-names (anki-models-names model))
(ord (gethash 'ord entry)) ; template number
(template (anki-core-decode-tmpls ord model))
(original (point))
(file-map (make-sparse-keymap))
beg end)
(let ((inhibit-read-only t) final)
(with-current-buffer buff
(anki-card-mode)
(erase-buffer)
(setq final
(with-temp-buffer
;; insert the question template
(insert (nth 1 template))
;; replace the {{field}} based on https://docs.ankiweb.net/#/templates/fields?id=field-replacements
(dolist (field (cl-mapcar 'cons model-names (split-string flds "\037")))
(let* ((mf (car field))
(cf (cdr field)))
(anki-field-replace-basic mf cf)))
(anki-field-replace-media)
(insert (format "<style>%s</style>" css))
(buffer-string)))
(cond ((eq switch :browser)
(insert final)
(browse-url-of-buffer))
(t
(insert final)
(setq anki-show-card entry)))
(if (eq anki-card-mode-parent-mode 'org-mode)
(anki-render-org)
(anki-render-html))
(cond ((eq anki-card-mode-parent-mode 'org-mode)
(org-mode))
((eq anki-card-mode-parent-mode 'shrface-mode)
(setq anki-shr-rendering-functions (append anki-shr-rendering-functions shr-external-rendering-functions))
(shrface-mode))
((eq anki-card-mode-parent-mode 'fundamental-mode)
(fundamental-mode))
(t
(fundamental-mode)))))
(unless (eq major-mode 'anki-card-mode)
(when (eq switch :switch)
(funcall anki-show-card-switch buff)
(goto-char (point-min))
(switch-to-buffer-other-window (set-buffer (anki-search--buffer-name)))
(goto-char original)))))
(defun anki-preview-front ()
(interactive)
(anki-show-front (anki-core-find-card-at-point) :switch)
(anki-play-audio))
(defun anki-preview-front-on-browser ()
(interactive)
(anki-show-front (anki-core-find-card-at-point) :browser)
(anki-play-audio))
(defun anki-get-card (entry)
"Get a ENTRY's question, answer and css."
(let* ((flds (gethash 'flds entry)) ; note fields
(model (anki-core-get-model (gethash 'mid entry))) ; model hash table
(model-names (anki-models-names model))
(css (gethash "css" model))
(ord (gethash 'ord entry)) ; template number
(template (anki-core-decode-tmpls ord model)))
(setq question
(with-temp-buffer
;; insert the question template
(insert (nth 1 template))
;; replace the {{field}} based on https://docs.ankiweb.net/#/templates/fields?id=field-replacements
(dolist (field (cl-mapcar 'cons model-names (split-string flds "\037")))
(let* ((mf (car field))
(cf (cdr field)))
(anki-field-replace-basic mf cf)))
(anki-field-replace-media)
(buffer-string)))
(setq answer
(with-temp-buffer
;; insert the answer template
(insert (nth 2 template))
;; replace the {{field}} based on https://docs.ankiweb.net/#/templates/fields?id=field-replacements
(dolist (field (cl-mapcar 'cons model-names (split-string flds "\037")))
(let* ((mf (car field))
(cf (cdr field)))
(anki-field-replace-basic mf cf question)))
(anki-field-replace-media)
(buffer-string)))
(list question answer css)))
(defun anki-show-back (entry &optional switch)
"Display ENTRY in the current buffer.
Optional argument SWITCH to switch to *anki-search* buffer to other window."
(unless (eq major-mode 'anki-card-mode)
(when (get-buffer (anki-show--buffer-name entry))
(kill-buffer (anki-show--buffer-name entry))))
(let* ((buff (get-buffer-create (anki-show--buffer-name entry)))
(id (gethash 'id entry)) ; card id
(flds (gethash 'flds entry)) ; note fields
(model (anki-core-get-model (gethash 'mid entry))) ; model hash table
(model-names (anki-models-names model))
(css (gethash "css" model))
(ord (gethash 'ord entry)) ; template number
(template (anki-core-decode-tmpls ord model))
(original (point))
(file-map (make-sparse-keymap))
beg end)
(let ((inhibit-read-only t) final)
(with-current-buffer buff
(anki-card-mode)
(erase-buffer)
(setq final
(with-temp-buffer
(let* ((question
(with-temp-buffer
;; insert the question template
(insert (nth 1 template))
;; replace the {{field}} based on https://docs.ankiweb.net/#/templates/fields?id=field-replacements
(dolist (field (cl-mapcar 'cons model-names (split-string flds "\037")))
(let* ((mf (car field))
(cf (cdr field)))
(anki-field-replace-basic mf cf)))
(buffer-string)))
(answer
(with-temp-buffer
;; insert the answer template
(insert (nth 2 template))
;; replace the {{field}} based on https://docs.ankiweb.net/#/templates/fields?id=field-replacements
(dolist (field (cl-mapcar 'cons model-names (split-string flds "\037")))
(let* ((mf (car field))
(cf (cdr field)))
(anki-field-replace-basic mf cf question)))
(buffer-string))) )
(insert answer)
(anki-field-replace-media)
(insert (format "<style>%s</style>" css))
(buffer-string))))
(cond ((eq switch :browser)
(insert final)
(browse-url-of-buffer))
(t
(insert final)
(setq anki-show-card entry)))
(if (eq anki-card-mode-parent-mode 'org-mode)
(anki-render-org)
(anki-render-html))
(cond ((eq anki-card-mode-parent-mode 'org-mode)
(org-mode))
((eq anki-card-mode-parent-mode 'shrface-mode)
(setq anki-shr-rendering-functions (append anki-shr-rendering-functions shr-external-rendering-functions))
(shrface-mode))
((eq anki-card-mode-parent-mode 'fundamental-mode)
(fundamental-mode))
(t
(fundamental-mode)))))
(unless (eq major-mode 'anki-card-mode)
(when (eq switch :switch)
(funcall anki-show-card-switch buff)
(goto-char (point-min))
(switch-to-buffer-other-window (set-buffer (anki-search--buffer-name)))
(goto-char original)))))
(defun anki-preview-back ()
(interactive)
(anki-show-back (anki-core-find-card-at-point) :switch)
(anki-play-audio))
(defun anki-preview-back-on-browser ()
(interactive)
(anki-show-back (anki-core-find-card-at-point) :browser)
(anki-play-audio))
(defun anki-field-replace-basic (mf cf &optional question)
"Replace the {{field}} based on https://docs.ankiweb.net/#/templates/fields?id=field-replacements."
;; Basic Replacements
(goto-char (point-min))
(while (re-search-forward (format "{{%s}}" mf) nil t)
(replace-match cf nil t))
;; Special Replacements
(when question
(goto-char (point-min))
(while (re-search-forward (format "{{FrontSide}}" mf) nil t)
(replace-match question nil t)))
;; Hint Fields
(goto-char (point-min))
(while (re-search-forward (format "{{.*?:%s}}" mf) nil t)
(replace-match cf nil t))
(goto-char (point-min))
(while (re-search-forward (format "{{.%s}}" mf) nil t)
(replace-match cf nil t)))
(defun anki-field-replace-media ()
;; replace the src to point to local files
(goto-char (point-min))
(while (re-search-forward "src=\"\\(.*?\\)\"" nil t)
(replace-match (format "src=\"%s%s\"" (concat (file-name-as-directory anki-collection-dir) "collection.media/") (match-string 1)) nil t))
;; replace the sound files to point to local files
(goto-char (point-min))
(while (re-search-forward "\\[sound:\\(.*?\\)\\]" nil t)
(replace-match (format "<a href=\"%s%s\">Play</a>" (concat (file-name-as-directory anki-collection-dir) "collection.media/") (match-string 1)) nil t)))
(defun anki-render-org ()
(unless (zerop (call-process-region (point-min) (point-max) "pandoc"
t t nil
(anki--pandoc-no-wrap-option)
"-f" "html-raw_html-native_divs" "-t" "org"))
;; TODO: Add error output, see org-protocol-capture-html
(error "Pandoc failed"))
(anki--clean-pandoc-output))
(defun anki--pandoc-no-wrap-option ()
"Return option `anki--pandoc-no-wrap-option', setting if unset."
(or anki--pandoc-no-wrap-option
(setq anki--pandoc-no-wrap-option (anki--check-pandoc-no-wrap-option))))
(defun anki--check-pandoc-no-wrap-option ()
"Return appropriate no-wrap option string depending on Pandoc version."
;; Pandoc >= 1.16 deprecates the --no-wrap option, replacing it with
;; --wrap=none. Sending the wrong option causes output to STDERR,
;; which `call-process-region' doesn't like. So we test Pandoc to see
;; which option to use.
(with-temp-buffer
(let* ((limit 3)
(checked 0)
(process (start-process "test-pandoc" (current-buffer)
"pandoc" "--dump-args" "--no-wrap")))
(while (process-live-p process)
(if (= checked limit)
(progn
;; Pandoc didn't exit in time. Kill it and raise an
;; error. This function will return `nil' and
;; `anki--pandoc-no-wrap-option' will remain
;; `nil', which will cause this function to run again and
;; set the const when a capture is run.
(set-process-query-on-exit-flag process nil)
(error "Unable to test Pandoc. Try increasing `anki-pandoc-sleep-time'. If it still doesn't work, please report this bug! (Include the output of \"pandoc --dump-args --no-wrap\")"))
(sleep-for anki-pandoc-sleep-time)
(cl-incf checked)))
(if (and (zerop (process-exit-status process))
(not (string-match "--no-wrap is deprecated" (buffer-string))))
"--no-wrap"
"--wrap=none"))))
(defun anki--clean-pandoc-output ()
"Remove unwanted things in current buffer of Pandoc output."
(anki--remove-html-blocks)
(anki--remove-custom_id_properties)
(anki--remove-bad-characters))
(defun anki--remove-bad-characters ()
"Remove unwanted characters from current buffer.
Bad characters are matched by `anki-pandoc-replacements'."
(save-excursion
(cl-loop for (re . replacement) in anki-pandoc-replacements
do (progn
(goto-char (point-min))
(while (re-search-forward re nil t)
(replace-match replacement nil t))))))
(defun anki--remove-html-blocks ()
"Remove \"#+BEGIN_HTML...#+END_HTML\" blocks from current buffer."
(save-excursion
(goto-char (point-min))
(while (re-search-forward (rx (optional "\n")
"#+BEGIN_HTML"
(minimal-match (1+ anything))
"#+END_HTML"
(optional "\n"))
nil t)
(replace-match ""))))
(defun anki--remove-custom_id_properties ()
"Remove property drawers containing CUSTOM_ID properties.
This is a blunt instrument: any drawer containing the CUSTOM_ID
property is removed, regardless of other properties it may
contain. This seems to be the best course of action in current
Pandoc output."
(let ((regexp (org-re-property "CUSTOM_ID" nil nil)))
(save-excursion
(goto-char (point-min))
(while (re-search-forward regexp nil t)
(when (org-at-property-p)
(org-back-to-heading)
;; As a minor optimization, we don't bound the search to the current entry. Unless the
;; current property drawer is malformed, which shouldn't happen in Pandoc output, it
;; should work.
(re-search-forward org-property-drawer-re)
(setf (buffer-substring (match-beginning 0) (match-end 0)) ""))))))
(defun anki-render-img (dom &optional url)
"Custom <img> rendering function for DOM.
Uses `shr-tag-img' for external paths and `anki-insert-image' for
internal ones."
(let ((url (or url (cdr (assq 'src (cadr dom)))))
(alt (or (cdr (assq 'alt (cadr dom))) "")))
(if (anki-external-url-p url)
;; HACK: avoid hanging in an infinite loop when using
;; `cl-letf' to override `shr-tag-img' with a function that
;; might call `shr-tag-img' again
(funcall anki-original-shr-tag-img-function dom url)
(when (stringp (anki-urldecode url))
(setq url (expand-file-name (anki-urldecode url)))
(anki-insert-image url alt)))))
(defun anki-insert-image (path alt)
"Insert an image for PATH at point, falling back to ALT.
This function honors `shr-max-image-proportion' if possible."
(let ((type (if (or (and (fboundp 'image-transforms-p) (image-transforms-p))
(not (fboundp 'imagemagick-types)))
nil
'imagemagick)))
(if (not (display-graphic-p))
(insert alt)
(-let* (((x1 y1 x2 y2) (window-inside-pixel-edges
(get-buffer-window (current-buffer))))
(image
;; `create-image' errors out for unsupported image types
(ignore-errors
(create-image path type nil
:ascent 100
:max-width (truncate (* shr-max-image-proportion
(- x2 x1)))
:max-height (truncate (* shr-max-image-proportion
(- y2 y1)))))))
(if image
(insert-image image)
(insert alt))))))
(defun anki-external-url-p (url)
"Return t if URL refers to an external document."
(and (url-type (url-generic-parse-url url)) t))
(defun anki-urldecode (string)
"Return urldecoded version of STRING or nil."
(when string
(url-unhex-string string)))
(defun anki-render-html ()
"Render HTML in current buffer with shr."
(run-hooks 'anki-pre-html-render-hook)
(let (;; HACK: make buttons use our own commands
(shr-map anki-shr-map)
(shr-external-rendering-functions anki-shr-rendering-functions)
(shr-use-fonts anki-variable-pitch))
;; HACK: `shr-external-rendering-functions' doesn't cover
;; every usage of `shr-tag-img'
(cl-letf (((symbol-function 'shr-tag-img) 'anki-render-img))
(if (eq anki-text-width t)
(cl-letf (((symbol-function 'shr-fill-line) 'ignore))
(shr-render-region (point-min) (point-max)))
(let ((shr-width anki-text-width))
(shr-render-region (point-min) (point-max))))))
(run-hooks 'anki-post-html-render-hook))
(defun anki-render-region (beg end)
"Render HTML in current buffer with shr."
(let (;; HACK: make buttons use our own commands
(shr-map anki-shr-map)
(shr-external-rendering-functions anki-shr-rendering-functions)
(shr-use-fonts anki-variable-pitch))
;; HACK: `shr-external-rendering-functions' doesn't cover
;; every usage of `shr-tag-img'
(cl-letf (((symbol-function 'shr-tag-img) 'anki-render-img))
(if (eq anki-text-width t)
(cl-letf (((symbol-function 'shr-fill-line) 'ignore))
(shr-render-region beg end))
(let ((shr-width anki-text-width))
(shr-render-region beg end))))))
(defun anki-card-quit ()
"Quit the *anki-card*."
(interactive)
(when (eq major-mode 'anki-card-mode)
(if (get-buffer "*anki-card*")
(kill-buffer "*anki-card*"))))
(defun anki-preview-card ()
(interactive)
(anki-show-card (anki-core-find-card-at-point) :switch)
(anki-play-audio))
(defun anki-models-names (model)
(cl-loop for name in (gethash "flds" model) collect
(gethash "name" name)))
(provide 'anki-card)