anki-editor/anki-editor.el

685 lines
29 KiB
EmacsLisp
Raw Normal View History

;;; anki-editor.el --- Make Anki Cards in Org-mode
2018-01-15 15:11:02 +01:00
;;
;; Copyright (C) 2018 Louie Tan <louietanlei@gmail.com>
;;
;; Filename: anki-editor.el
;; Description: Make Anki Cards in Org-mode
2018-01-15 15:11:02 +01:00
;; Author: Louie Tan
2018-02-10 15:32:12 +01:00
;; Version: 0.2.1
2018-05-13 09:52:37 +02:00
;; Package-Requires: ((emacs "25") (request "0.3.0"))
2018-01-15 15:11:02 +01:00
;; URL: https://github.com/louietan/anki-editor
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;; This package is for people who use Anki as SRS but would like to
;; make cards in Org-mode.
;;
;; With this package, you can make cards from something like:
;; (which is inspired by `org-dirll')
;;
;; * Computing :deck:
;; ** Item :note:
;; :PROPERTIES:
;; :ANKI_NOTE_TYPE: Basic
;; :END:
;; *** Front
;; How to hello world in elisp ?
;; *** Back
;; #+BEGIN_SRC emacs-lisp
;; (message "Hello, world!")
;; #+END_SRC
;;
;; This package leverages Org-mode's built-in HTML backend to
;; generate HTML for contents of note fields with specific syntax
;; (e.g. latex) translated to Anki style, then save the note to Anki.
;;
;; For this package to work, you have to setup these external dependencies:
;; - curl
;; - AnkiConnect, an Anki addon that runs an HTTP server to expose
;; Anki functions as RESTful APIs
2018-01-15 15:11:02 +01:00
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; This program is free software: you can redistribute it and/or modify
2017-12-27 17:20:01 +01:00
;; it under the terms of the GNU General Public License as published by
2018-01-15 15:11:02 +01:00
;; the Free Software Foundation, either version 3 of the License, or (at
;; your option) any later version.
2017-12-27 17:20:01 +01:00
;;
2018-01-15 15:11:02 +01:00
;; 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.
2017-12-27 17:20:01 +01:00
;;
;; You should have received a copy of the GNU General Public License
2018-01-15 15:11:02 +01:00
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Code:
2017-12-27 17:20:01 +01:00
2018-05-07 15:09:52 +02:00
(require 'cl-lib)
2017-12-27 17:20:01 +01:00
(require 'json)
(require 'org-element)
2018-02-04 02:10:40 +01:00
(require 'ox)
2018-05-13 09:52:37 +02:00
(require 'request)
(require 'seq)
2017-12-27 17:20:01 +01:00
(defconst anki-editor-prop-note-type "ANKI_NOTE_TYPE")
(defconst anki-editor-prop-note-id "ANKI_NOTE_ID")
(defconst anki-editor-prop-deck "ANKI_DECK")
(defconst anki-editor-prop-failure-reason "ANKI_FAILURE_REASON")
2018-02-04 02:10:40 +01:00
(defconst anki-editor-buffer-html-output "*AnkiEditor HTML Output*")
(defconst anki-editor-org-tag-regexp "^\\([[:alnum:]_@#%]+\\)+$")
2018-01-18 10:21:49 +01:00
2018-01-21 12:22:42 +01:00
(defgroup anki-editor nil
"Customizations for anki-editor."
:group 'org)
(defcustom anki-editor-break-consecutive-braces-in-latex
nil
"If non-nil, consecutive `}' will be automatically separated by spaces to prevent early-closing of cloze.
See https://apps.ankiweb.net/docs/manual.html#latex-conflicts.")
(defcustom anki-editor-create-decks
nil
"If non-nil, creates deck before creating a note.")
2018-01-18 10:21:49 +01:00
(defcustom anki-editor-anki-connect-listening-address
"127.0.0.1"
2018-02-04 02:10:40 +01:00
"The network address AnkiConnect is listening.")
2018-01-18 10:21:49 +01:00
(defcustom anki-editor-anki-connect-listening-port
"8765"
2018-02-04 02:10:40 +01:00
"The port number AnkiConnect is listening.")
2017-12-27 17:20:01 +01:00
2018-02-04 02:10:40 +01:00
;;; AnkiConnect
2018-01-19 13:32:28 +01:00
(defun anki-editor--anki-connect-invoke (action version &optional params)
2018-02-04 02:10:40 +01:00
"Invoke AnkiConnect with ACTION, VERSION and PARAMS."
2018-01-19 13:32:28 +01:00
(let* ((data `(("action" . ,action)
("version" . ,version)))
(request-body (json-encode
(if params
2018-01-21 12:22:42 +01:00
(push `("params" . ,params) data)
2018-01-19 13:32:28 +01:00
data)))
2018-05-13 09:52:37 +02:00
(request-backend 'curl)
(json-array-type 'list)
reply err)
(request (format "http://%s:%s"
anki-editor-anki-connect-listening-address
anki-editor-anki-connect-listening-port)
:type "POST"
:parser 'json-read
:data (encode-coding-string request-body 'utf-8)
:success (cl-function (lambda (&key data &allow-other-keys)
(setq reply data)))
:error (cl-function (lambda (&key _ &key error-thrown &allow-other-keys)
(setq err (string-trim (cdr error-thrown)))))
:sync t)
(when err (error "Error communicating with AnkiConnect using cURL: %s" err))
(or reply (error "Got empty reply from AnkiConnect"))))
2018-01-19 13:32:28 +01:00
(defmacro anki-editor--anki-connect-invoke-result (&rest args)
2018-02-04 02:10:40 +01:00
"Invoke AnkiConnect with ARGS, return the result from response or raise an error."
2018-01-19 13:32:28 +01:00
`(let* ((resp (anki-editor--anki-connect-invoke ,@args))
(rslt (alist-get 'result resp))
(err (alist-get 'error resp)))
(when err (error err))
rslt))
(defun anki-editor--anki-connect-map-note (note)
2018-02-04 02:10:40 +01:00
"Convert NOTE to the form that AnkiConnect accepts."
2018-01-21 12:22:42 +01:00
(let-alist note
(list (cons "id" .note-id)
(cons "deckName" .deck)
(cons "modelName" .note-type)
(cons "fields" .fields)
;; Convert tags to a vector since empty list is identical to nil
2018-02-04 02:10:40 +01:00
;; which will become None in Python, but AnkiConnect requires it
2018-01-21 12:22:42 +01:00
;; to be type of list.
(cons "tags" (vconcat .tags)))))
2018-01-19 13:32:28 +01:00
2018-02-07 17:27:44 +01:00
(defun anki-editor--anki-connect-store-media-file (path)
"Store media file for PATH, which is an absolute file name.
The result is the path to the newly stored media file."
2018-05-13 09:52:37 +02:00
(unless (every #'executable-find '("base64" "sha1sum"))
2018-02-07 17:27:44 +01:00
(error "Please make sure `base64' and `sha1sum' are available from your shell, which are required for storing media files"))
(let* ((content (string-trim
(shell-command-to-string
(format "base64 --wrap=0 %s"
(shell-quote-argument path)))))
(hash (string-trim
(shell-command-to-string
(format "sha1sum %s | awk '{print $1}'"
(shell-quote-argument path)))))
(media-file-name (format "%s-%s%s"
(file-name-base path)
hash
(file-name-extension path t))))
(anki-editor--anki-connect-invoke-result
"storeMediaFile" 5
`((filename . ,media-file-name)
(data . ,content)))
media-file-name))
2018-05-07 11:05:46 +02:00
;;; Minor mode
2018-01-19 13:32:28 +01:00
2018-01-07 10:49:22 +01:00
;;;###autoload
2018-05-07 11:05:46 +02:00
(define-minor-mode anki-editor-mode
"anki-eidtor-mode"
:lighter " anki-editor"
(if anki-editor-mode (anki-editor-setup-minor-mode)
(anki-editor-teardown-minor-mode)))
(defun anki-editor-setup-minor-mode ()
"Set up this minor mode."
(add-hook 'org-property-allowed-value-functions #'anki-editor--get-allowed-values-for-property)
(advice-add 'org-set-tags :before #'anki-editor--before-set-tags))
(defun anki-editor-teardown-minor-mode ()
"Tear down this minor mode."
(remove-hook 'org-property-allowed-value-functions #'anki-editor--get-allowed-values-for-property)
(advice-remove 'org-set-tags #'anki-editor--before-set-tags)
(when (advice-member-p 'anki-editor--get-buffer-tags #'org-get-buffer-tags)
(advice-remove 'org-get-buffer-tags #'anki-editor--get-buffer-tags)))
;;; Commands
2018-05-07 15:09:52 +02:00
(defun anki-editor-submit (&optional arg match scope)
"Build notes from headings that can be matched by MATCH within SCOPE and send them to Anki.
2018-05-07 15:09:52 +02:00
The default search condition `&ANKI_NOTE_TYPE<>\"\"' will be
appended to MATCH.
For notes that already exist in Anki (i.e. has `ANKI_NOTE_ID'
property), only their fields and tags will be updated, change of
deck or note type are currently not supported.
If SCOPE is not specified, the following rules are applied to
determine the scope:
- if there's an active region, it will be set to `region'
- if called with prefix `C-u', it will be set to `tree'
- if called with prefix double `C-u', it will be set to `file'
- if called with prefix triple `C-u', will be set to `agenda'
See doc string of `org-map-entries' for what these different options mean.
If one fails, the failure reason will be set in property drawer
of that heading."
2018-05-07 15:09:52 +02:00
(interactive "P")
(unless scope
(setq scope (cond
((region-active-p) 'region)
((equal arg '(4)) 'tree)
((equal arg '(16)) 'file)
((equal arg '(64)) 'agenda)
(t nil))))
(setq match (concat match "&" anki-editor-prop-note-type "<>\"\""))
(let ((total 0)
2018-05-07 15:09:52 +02:00
(acc 0)
(failed 0))
2018-05-07 15:09:52 +02:00
(message "Counting notes...")
2018-05-13 09:52:37 +02:00
(org-map-entries (lambda () (cl-incf total)) match scope)
2018-05-07 15:09:52 +02:00
(org-map-entries (lambda ()
(message "[%d/%d] Processing notes in buffer \"%s\", wait a moment..."
2018-05-13 09:52:37 +02:00
(cl-incf acc) total (buffer-name))
2018-05-07 15:09:52 +02:00
(anki-editor--clear-failure-reason)
(condition-case err
(anki-editor--process-note-heading)
2018-05-13 09:52:37 +02:00
(error (cl-incf failed)
2018-05-07 15:09:52 +02:00
(anki-editor--set-failure-reason (error-message-string err)))))
match
scope)
(message (if (= 0 failed)
(format "Successfully submitted %d notes to Anki." acc)
(format "Submitted %d notes, %d of which are failed. Check property drawers for failure reasons. Once you've fixed the issues, you could use `anki-editor-retry-failure-notes' to re-submit the failed notes."
acc
failed)))))
(defun anki-editor-retry-failure-notes (&optional arg scope)
"Re-submit notes that were failed.
This command just calls `anki-editor-submit' with match string
matching non-empty `ANKI_FAILURE_REASON' properties."
(interactive "P")
(anki-editor-submit arg (concat anki-editor-prop-failure-reason "<>\"\"") scope))
2017-12-27 17:20:01 +01:00
(defun anki-editor-insert-deck (&optional arg)
"Insert a deck heading interactively.
ARG is used the same way as `M-RET' (org-insert-heading)."
(interactive "P")
2018-01-05 17:09:31 +01:00
(message "Fetching decks...")
(let* ((decks (sort (anki-editor-deck-names) #'string-lessp))
(deckname (completing-read "Choose a deck: " decks)))
(org-insert-heading arg)
(insert deckname)
(org-set-property anki-editor-prop-deck deckname)))
2018-01-05 14:53:37 +01:00
2018-05-06 08:01:06 +02:00
(defun anki-editor-insert-note (&optional prefix)
"Insert a note interactively.
2018-01-22 14:57:35 +01:00
2018-05-06 08:01:06 +02:00
Where the note subtree is placed depends on PREFIX, which is the
same as how it is used by `M-RET'(org-insert-heading)."
(interactive "P")
2018-01-05 17:09:31 +01:00
(message "Fetching note types...")
(let ((note-types (sort (anki-editor-note-types) #'string-lessp))
2018-01-16 15:08:33 +01:00
note-type note-heading fields)
(setq note-type (completing-read "Choose a note type: " note-types))
2018-01-14 09:17:50 +01:00
(message "Fetching note fields...")
2018-01-16 15:08:33 +01:00
(setq fields (anki-editor--anki-connect-invoke-result "modelFieldNames" 5 `((modelName . ,note-type)))
2018-01-14 09:17:50 +01:00
note-heading (read-from-minibuffer "Enter the heading: " "Item"))
2018-05-06 08:01:06 +02:00
(anki-editor--insert-note-skeleton prefix note-heading note-type fields)))
2018-01-16 13:00:19 +01:00
2018-01-31 16:08:24 +01:00
(defun anki-editor-cloze-region (&optional arg)
"Cloze region with number ARG."
(interactive "p")
(unless (region-active-p) (error "No active region"))
(let ((region (buffer-substring (region-beginning) (region-end)))
(hint (read-from-minibuffer "Hint (optional): ")))
(save-excursion
(delete-region (region-beginning) (region-end))
(insert (with-output-to-string
(princ (format "{{c%d::%s" (or arg 1) region))
(unless (string-empty-p (string-trim hint)) (princ (format "::%s" hint)))
(princ "}}"))))))
2018-02-10 15:15:06 +01:00
(defun anki-editor-export-subtree-to-html ()
"Export subtree of the element at point to HTML."
(interactive)
2018-02-10 15:15:06 +01:00
(org-export-to-buffer
anki-editor--ox-anki-html-backend
anki-editor-buffer-html-output nil t nil t nil
(lambda () (html-mode))))
(defun anki-editor-convert-region-to-html ()
"Convert and replace region to HTML."
(interactive)
2018-02-04 02:10:40 +01:00
(org-export-replace-region-by anki-editor--ox-anki-html-backend))
2018-01-15 06:03:58 +01:00
(defun anki-editor-anki-connect-upgrade ()
2018-02-04 02:10:40 +01:00
"Upgrade AnkiConnect to the latest version.
2018-01-15 06:03:58 +01:00
This will display a confirmation dialog box in Anki asking if you
2018-01-22 14:57:35 +01:00
want to continue. The upgrading is done by downloading the latest
2018-01-15 06:03:58 +01:00
code in the master branch of its Github repo.
This is useful when new version of this package depends on the
2018-02-04 02:10:40 +01:00
bugfixes or new features of AnkiConnect."
2018-01-15 06:03:58 +01:00
(interactive)
2018-02-04 02:10:40 +01:00
(when (yes-or-no-p "NOTE: This will download the latest codebase of AnkiConnect to your system, which is not guaranteed to be safe or stable. Generally, you don't need this command, this is useful only when new version of this package requires the updates of AnkiConnect that are not released yet. Do you still want to continue?")
2018-01-21 12:22:42 +01:00
(let ((result (anki-editor--anki-connect-invoke-result "upgrade" 5)))
(when (and (booleanp result) result)
2018-02-04 02:10:40 +01:00
(message "AnkiConnect has been upgraded, you might have to restart Anki to make it in effect.")))))
2017-12-27 17:20:01 +01:00
2018-01-15 15:11:02 +01:00
;;; Core Functions
2017-12-27 17:20:01 +01:00
(defun anki-editor--process-note-heading ()
"Process note heading at point."
(let (note-elem note)
(setq note-elem (org-element-at-point)
note-elem (let ((content (buffer-substring
(org-element-property :begin note-elem)
2018-05-07 15:09:52 +02:00
;; in case the buffer is narrowed,
;; e.g. by `org-map-entries' when
;; scope is `tree'
(min (point-max) (org-element-property :end note-elem)))))
(with-temp-buffer
(org-mode)
(insert content)
(car (org-element-contents (org-element-parse-buffer)))))
note (anki-editor--heading-to-note note-elem))
(anki-editor--save-note note)))
2018-05-06 08:01:06 +02:00
(defun anki-editor--insert-note-skeleton (prefix heading note-type fields)
"Insert a note subtree (skeleton) with HEADING, NOTE-TYPE and FIELDS.
Where the subtree is created depends on PREFIX."
(org-insert-heading prefix)
2018-01-22 14:57:35 +01:00
(insert heading)
(org-set-property anki-editor-prop-note-type note-type)
2018-01-22 14:57:35 +01:00
(dolist (field fields)
(save-excursion
(org-insert-heading-respect-content)
(org-do-demote)
2018-02-04 02:10:40 +01:00
(insert field))))
2018-01-22 14:57:35 +01:00
(defun anki-editor--save-note (note)
2018-02-04 02:10:40 +01:00
"Request AnkiConnect for updating or creating NOTE."
(if (= (alist-get 'note-id note) -1)
(anki-editor--create-note note)
(anki-editor--update-note note)))
(defun anki-editor--create-note (note)
2018-02-04 02:10:40 +01:00
"Request AnkiConnect for creating NOTE."
(when anki-editor-create-decks
(anki-editor--create-deck (alist-get 'deck note)))
(let* ((response (anki-editor--anki-connect-invoke
"addNote" 5 `((note . ,(anki-editor--anki-connect-map-note note)))))
(result (alist-get 'result response))
(err (alist-get 'error response)))
(if result
2018-02-04 02:10:40 +01:00
;; put ID of newly created note in property drawer
(org-set-property anki-editor-prop-note-id
(format "%d" (alist-get 'result response)))
(error (or err "Sorry, the operation was unsuccessful and detailed information is unavailable.")))))
(defun anki-editor--update-note (note)
2018-02-04 02:10:40 +01:00
"Request AnkiConnect for updating fields and tags of NOTE."
2018-01-16 15:08:33 +01:00
(anki-editor--anki-connect-invoke-result
"updateNoteFields" 5 `((note . ,(anki-editor--anki-connect-map-note note))))
;; update tags
(let (existing-note added-tags removed-tags)
(setq existing-note (car (anki-editor--anki-connect-invoke-result
"notesInfo" 5 `(("notes" . (,(alist-get 'note-id note))))))
added-tags (cl-set-difference (alist-get 'tags note) (alist-get 'tags existing-note) :test #'string-equal)
removed-tags (cl-set-difference (alist-get 'tags existing-note) (alist-get 'tags note) :test #'string-equal))
(when added-tags
(anki-editor--anki-connect-invoke-result
"addTags" 5 `(("notes" . (,(alist-get 'note-id note)))
("tags" . ,(mapconcat #'identity added-tags " ")))))
(when removed-tags
(anki-editor--anki-connect-invoke-result
"removeTags" 5 `(("notes" . (,(alist-get 'note-id note)))
("tags" . ,(mapconcat #'identity removed-tags " ")))))))
(defun anki-editor--get-allowed-values-for-property (property)
"Get allowed values for PROPERTY."
(pcase property
((pred (string= anki-editor-prop-deck)) (anki-editor-deck-names))
((pred (string= anki-editor-prop-note-type)) (anki-editor-note-types))
(_ nil)))
(defun anki-editor--create-deck (deck-name)
"Request AnkiConnect for creating a deck named DECK-NAME."
(anki-editor--anki-connect-invoke-result "createDeck" 5 `((deck . ,deck-name))))
(defun anki-editor--set-failure-reason (reason)
2018-01-19 13:21:06 +01:00
"Set failure reason to REASON in property drawer at point."
(org-entry-put nil anki-editor-prop-failure-reason reason))
(defun anki-editor--clear-failure-reason ()
2018-01-19 13:21:06 +01:00
"Clear failure reason in property drawer at point."
(org-entry-delete nil anki-editor-prop-failure-reason))
2018-04-15 09:31:45 +02:00
(defun anki-editor-is-valid-org-tag (tag)
"Check if string TAG can be used as an Org tag."
(string-match-p anki-editor-org-tag-regexp tag))
2018-05-06 08:01:06 +02:00
(defun anki-editor-all-tags ()
"Get all tags from Anki."
(let (anki-tags)
(prog1
(setq anki-tags (anki-editor--anki-connect-invoke-result "getTags" 5))
(unless (seq-every-p #'anki-editor-is-valid-org-tag anki-tags)
(warn "Some tags from Anki contain characters that are not valid in Org tags.")))))
2018-05-06 08:01:06 +02:00
(defun anki-editor-deck-names ()
"Get all decks names from Anki."
(anki-editor--anki-connect-invoke-result "deckNames" 5))
2018-05-06 08:01:06 +02:00
(defun anki-editor--before-set-tags (&optional _ just-align)
"Build tag list for completion including tags from Anki.
When the value of `org-current-tag-alist' is non-nil, just append
to it.
Otherwise, advise function `org-get-buffer-tags' to append tags
from Anki to the result.
Do nothing when JUST-ALIGN is non-nil."
(unless just-align
(if org-current-tag-alist
(setq org-current-tag-alist
(org-tag-add-to-alist
(mapcar #'list (anki-editor-all-tags))
org-current-tag-alist))
(unless (advice-member-p 'anki-editor--get-buffer-tags #'org-get-buffer-tags)
(advice-add 'org-get-buffer-tags :around #'anki-editor--get-buffer-tags)))))
(defun anki-editor--get-buffer-tags (oldfun)
"Append tags from Anki to the result of applying OLDFUN."
(append (funcall oldfun) (mapcar #'list (anki-editor-all-tags))))
(defun anki-editor-note-types ()
"Get note types from Anki."
(anki-editor--anki-connect-invoke-result "modelNames" 5))
2017-12-27 17:20:01 +01:00
(defun anki-editor--heading-to-note (heading)
2018-01-19 13:21:06 +01:00
"Construct an alist representing a note for HEADING."
2018-05-13 09:52:37 +02:00
(let ((org-trust-scanner-tags t)
deck note-id note-type tags fields)
(setq deck (org-entry-get-with-inheritance anki-editor-prop-deck)
note-id (org-entry-get nil anki-editor-prop-note-id)
note-type (org-entry-get nil anki-editor-prop-note-type)
2018-05-06 08:01:06 +02:00
tags (org-get-tags-at)
2017-12-27 17:20:01 +01:00
fields (mapcar #'anki-editor--heading-to-note-field (anki-editor--get-subheadings heading)))
(unless deck (error "No deck specified"))
(unless note-type (error "Missing note type"))
(unless fields (error "Missing fields"))
2017-12-27 17:20:01 +01:00
`((deck . ,deck)
(note-id . ,(string-to-number (or note-id "-1")))
2017-12-27 17:20:01 +01:00
(note-type . ,note-type)
2018-04-15 09:31:45 +02:00
(tags . ,tags)
2017-12-27 17:20:01 +01:00
(fields . ,fields))))
(defun anki-editor--heading-to-note-field (heading)
2018-01-19 13:21:06 +01:00
"Convert HEADING to field data, a cons cell, the car of which is the field name, the cdr of which is contens represented in HTML."
(let ((inhibit-message t) ;; suppress echo message from `org-babel-exp-src-block'
(field-name (substring-no-properties
2017-12-27 17:20:01 +01:00
(org-element-property
:raw-value
heading)))
(contents (org-element-contents heading)))
2018-02-04 02:10:40 +01:00
`(,field-name . ,(org-export-string-as
(org-element-interpret-data contents)
anki-editor--ox-anki-html-backend t))))
;;; Org Export Backend
(defconst anki-editor--ox-anki-html-backend
(org-export-create-backend
:parent 'html
:transcoders '((latex-fragment . anki-editor--ox-latex)
2018-02-07 17:27:44 +01:00
(latex-environment . anki-editor--ox-latex)
(link . anki-editor--ox-link))))
2018-02-04 02:10:40 +01:00
(defconst anki-editor--anki-latex-syntax-map
2018-01-21 12:22:42 +01:00
`((,(format "^%s" (regexp-quote "$$")) . "[$$]")
(,(format "%s$" (regexp-quote "$$")) . "[/$$]")
(,(format "^%s" (regexp-quote "$")) . "[$]")
(,(format "%s$" (regexp-quote "$")) . "[/$]")
(,(format "^%s" (regexp-quote "\\(")) . "[$]")
(,(format "%s$" (regexp-quote "\\)")) . "[/$]")
(,(format "^%s" (regexp-quote "\\[")) . "[$$]")
(,(format "%s$" (regexp-quote "\\]")) . "[/$$]")))
2017-12-27 17:20:01 +01:00
2018-01-08 11:20:11 +01:00
(defun anki-editor--wrap-latex (content)
2018-01-19 13:21:06 +01:00
"Wrap CONTENT with Anki-style latex markers."
2018-01-08 11:20:11 +01:00
(format "[latex]%s[/latex]" content))
2018-02-04 02:10:40 +01:00
(defun anki-editor--ox-latex (latex contents info)
"Transcode LATEX from Org to HTML.
CONTENTS is nil. INFO is a plist holding contextual information."
(let* ((code (org-element-property :value latex))
(copy code))
;; translate delimiters
2018-01-08 11:20:11 +01:00
(dolist (map anki-editor--anki-latex-syntax-map)
2018-02-04 02:10:40 +01:00
(setq code (replace-regexp-in-string (car map) (cdr map) code t t)))
2017-12-27 17:20:01 +01:00
(when (equal copy code)
(setq code (anki-editor--wrap-latex
(if (eq (org-element-type latex) 'latex-fragment)
code
(format "\n<pre>\n%s</pre>\n"
(org-remove-indentation code))))))
(if anki-editor-break-consecutive-braces-in-latex
(replace-regexp-in-string "}}" "} } " code)
2018-02-04 02:10:40 +01:00
code)))
2017-12-27 17:20:01 +01:00
2018-02-07 17:27:44 +01:00
(defun anki-editor--ox-link (link desc info)
"Transcode a LINK object from Org to HTML.
DESC is the description part of the link, or the empty string.
INFO is a plist holding contextual information. THE
IMPLEMENTATION IS BASICALLY COPIED AND SIMPLIFIED FROM
ox-html.el :)"
(let* ((type (org-element-property :type link))
(raw-path (org-element-property :path link))
;; Ensure DESC really exists, or set it to nil.
(desc (org-string-nw-p desc))
(path
(cond
((member type '("http" "https" "ftp" "mailto" "news"))
(url-encode-url (org-link-unescape (concat type ":" raw-path))))
((string= type "file")
;; Possibly append `:html-link-home' to relative file
;; name.
(let ((home (and (plist-get info :html-link-home)
(org-trim (plist-get info :html-link-home)))))
(when (and home
(plist-get info :html-link-use-abs-url)
(file-name-absolute-p raw-path))
(setq raw-path (concat (file-name-as-directory home) raw-path)))
(message "Storing media file to Anki for %s..." raw-path)
(anki-editor--anki-connect-store-media-file (expand-file-name (url-unhex-string raw-path)))))
2018-02-07 17:27:44 +01:00
(t raw-path)))
;; Extract attributes from parent's paragraph. HACK: Only do
;; this for the first link in parent (inner image link for
;; inline images). This is needed as long as attributes
;; cannot be set on a per link basis.
(attributes-plist
(let* ((parent (org-export-get-parent-element link))
(link (let ((container (org-export-get-parent link)))
(if (and (eq (org-element-type container) 'link)
(org-html-inline-image-p link info))
container
link))))
(and (eq (org-element-map parent 'link 'identity info t) link)
(org-export-read-attribute :attr_html parent))))
(attributes
(let ((attr (org-html--make-attribute-string attributes-plist)))
(if (org-string-nw-p attr) (concat " " attr) ""))))
(cond
;; Image file.
((and (plist-get info :html-inline-images)
(org-export-inline-image-p
link (plist-get info :html-inline-image-rules)))
(org-html--format-image path attributes-plist info))
;; Radio target: Transcode target's contents and use them as
;; link's description.
((string= type "radio")
(let ((destination (org-export-resolve-radio-link link info)))
(if (not destination) desc
(format "<a href=\"#%s\"%s>%s</a>"
(org-export-get-reference destination info)
attributes
desc))))
;; Links pointing to a headline: Find destination and build
;; appropriate referencing command.
((member type '("custom-id" "fuzzy" "id"))
(let ((destination (if (string= type "fuzzy")
(org-export-resolve-fuzzy-link link info)
(org-export-resolve-id-link link info))))
(pcase (org-element-type destination)
;; ID link points to an external file.
(`plain-text
(let ((fragment (concat "ID-" path)))
(format "<a href=\"%s#%s\"%s>%s</a>"
destination fragment attributes (or desc destination))))
;; Fuzzy link points nowhere.
(`nil
(format "<i>%s</i>"
(or desc
(org-export-data
(org-element-property :raw-link link) info))))
;; Link points to a headline.
(`headline
(let ((href (or (org-element-property :CUSTOM_ID destination)
(org-export-get-reference destination info)))
;; What description to use?
(desc
;; Case 1: Headline is numbered and LINK has no
;; description. Display section number.
(if (and (org-export-numbered-headline-p destination info)
(not desc))
(mapconcat #'number-to-string
(org-export-get-headline-number
destination info) ".")
;; Case 2: Either the headline is un-numbered or
;; LINK has a custom description. Display LINK's
;; description or headline's title.
(or desc
(org-export-data
(org-element-property :title destination) info)))))
(format "<a href=\"#%s\"%s>%s</a>" href attributes desc)))
;; Fuzzy link points to a target or an element.
(_
(let* ((ref (org-export-get-reference destination info))
(org-html-standalone-image-predicate
#'org-html--has-caption-p)
(number (cond
(desc nil)
((org-html-standalone-image-p destination info)
(org-export-get-ordinal
(org-element-map destination 'link
#'identity info t)
info 'link 'org-html-standalone-image-p))
(t (org-export-get-ordinal
destination info nil 'org-html--has-caption-p))))
(desc (cond (desc)
((not number) "No description for this link")
((numberp number) (number-to-string number))
(t (mapconcat #'number-to-string number ".")))))
(format "<a href=\"#%s\"%s>%s</a>" ref attributes desc))))))
;; Coderef: replace link with the reference name or the
;; equivalent line number.
((string= type "coderef")
(let ((fragment (concat "coderef-" (org-html-encode-plain-text path))))
(format "<a href=\"#%s\" %s%s>%s</a>"
fragment
(format "class=\"coderef\" onmouseover=\"CodeHighlightOn(this, \
'%s');\" onmouseout=\"CodeHighlightOff(this, '%s');\""
fragment fragment)
attributes
(format (org-export-get-coderef-format path desc)
(org-export-resolve-coderef path info)))))
;; External link with a description part.
((and path desc) (format "<a href=\"%s\"%s>%s</a>"
(org-html-encode-plain-text path)
attributes
desc))
;; External link without a description part.
(path (let ((path (org-html-encode-plain-text path)))
(format "<a href=\"%s\"%s>%s</a>"
path
attributes
(org-link-unescape path))))
;; No path, only description. Try to do something useful.
(t (format "<i>%s</i>" desc)))))
2018-02-04 02:10:40 +01:00
;;; Utilities
2017-12-27 17:20:01 +01:00
2018-02-04 02:10:40 +01:00
(defun anki-editor--get-subheadings (heading)
"Get all the subheadings of HEADING."
(org-element-map (org-element-contents heading)
'headline 'identity nil nil 'headline))
2018-01-22 14:57:35 +01:00
2017-12-27 17:20:01 +01:00
(provide 'anki-editor)
2018-01-15 15:11:02 +01:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2017-12-27 17:20:01 +01:00
;;; anki-editor.el ends here