Merge branch 'maint'
[org-mode.git] / lisp / org-footnote.el
blobe5553646a91396b3282a3a5f1ac8ca74a0433158
1 ;;; org-footnote.el --- Footnote support in Org -*- lexical-binding: t; -*-
2 ;;
3 ;; Copyright (C) 2009-2017 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the code dealing with footnotes in Org mode.
29 ;;; Code:
31 ;;;; Declarations
33 (require 'cl-lib)
34 (require 'org-macs)
35 (require 'org-compat)
37 (declare-function org-at-comment-p "org" ())
38 (declare-function org-at-heading-p "org" (&optional ignored))
39 (declare-function org-back-over-empty-lines "org" ())
40 (declare-function org-edit-footnote-reference "org-src" ())
41 (declare-function org-element-at-point "org-element" ())
42 (declare-function org-element-class "org-element" (datum &optional parent))
43 (declare-function org-element-context "org-element" (&optional element))
44 (declare-function org-element-lineage "org-element" (blob &optional types with-self))
45 (declare-function org-element-property "org-element" (property element))
46 (declare-function org-element-type "org-element" (element))
47 (declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading))
48 (declare-function org-fill-paragraph "org" (&optional justify region))
49 (declare-function org-in-block-p "org" (names))
50 (declare-function org-in-regexp "org" (re &optional nlines visually))
51 (declare-function org-in-verbatim-emphasis "org" ())
52 (declare-function org-inside-LaTeX-fragment-p "org" ())
53 (declare-function org-inside-latex-macro-p "org" ())
54 (declare-function org-mark-ring-push "org" (&optional pos buffer))
55 (declare-function org-show-context "org" (&optional key))
56 (declare-function org-trim "org" (s &optional keep-lead))
57 (declare-function outline-next-heading "outline")
59 (defvar electric-indent-mode)
60 (defvar org-blank-before-new-entry) ; defined in org.el
61 (defvar org-bracket-link-regexp) ; defined in org.el
62 (defvar org-complex-heading-regexp) ; defined in org.el
63 (defvar org-odd-levels-only) ; defined in org.el
64 (defvar org-outline-regexp) ; defined in org.el
65 (defvar org-outline-regexp-bol) ; defined in org.el
68 ;;;; Constants
70 (defconst org-footnote-re
71 "\\[fn:\\(?:\\(?1:[-_[:word:]]+\\)?\\(:\\)\\|\\(?1:[-_[:word:]]+\\)\\]\\)"
72 "Regular expression for matching footnotes.
73 Match group 1 contains footnote's label. It is nil for anonymous
74 footnotes. Match group 2 is non-nil only when footnote is
75 inline, i.e., it contains its own definition.")
77 (defconst org-footnote-definition-re "^\\[fn:\\([-_[:word:]]+\\)\\]"
78 "Regular expression matching the definition of a footnote.
79 Match group 1 contains definition's label.")
81 (defconst org-footnote-forbidden-blocks '("comment" "example" "export" "src")
82 "Names of blocks where footnotes are not allowed.")
85 ;;;; Customization
87 (defgroup org-footnote nil
88 "Footnotes in Org mode."
89 :tag "Org Footnote"
90 :group 'org)
92 (defcustom org-footnote-section "Footnotes"
93 "Outline heading containing footnote definitions.
95 This can be nil, to place footnotes locally at the end of the
96 current outline node. If can also be the name of a special
97 outline heading under which footnotes should be put.
99 This variable defines the place where Org puts the definition
100 automatically, i.e. when creating the footnote, and when sorting
101 the notes. However, by hand you may place definitions
102 *anywhere*.
104 If this is a string, during export, all subtrees starting with
105 this heading will be ignored.
107 If you don't use the customize interface to change this variable,
108 you will need to run the following command after the change:
110 `\\[universal-argument] \\[org-element-cache-reset]'"
111 :group 'org-footnote
112 :initialize 'custom-initialize-default
113 :set (lambda (var val)
114 (set var val)
115 (when (fboundp 'org-element-cache-reset)
116 (org-element-cache-reset 'all)))
117 :type '(choice
118 (string :tag "Collect footnotes under heading")
119 (const :tag "Define footnotes locally" nil)))
121 (defcustom org-footnote-define-inline nil
122 "Non-nil means define footnotes inline, at reference location.
123 When nil, footnotes will be defined in a special section near
124 the end of the document. When t, the [fn:label:definition] notation
125 will be used to define the footnote at the reference position."
126 :group 'org-footnote
127 :type 'boolean)
129 (defcustom org-footnote-auto-label t
130 "Non-nil means define automatically new labels for footnotes.
131 Possible values are:
133 nil Prompt the user for each label.
134 t Create unique labels of the form [fn:1], [fn:2], etc.
135 confirm Like t, but let the user edit the created value.
136 The label can be removed from the minibuffer to create
137 an anonymous footnote.
138 random Automatically generate a unique, random label."
139 :group 'org-footnote
140 :type '(choice
141 (const :tag "Prompt for label" nil)
142 (const :tag "Create automatic [fn:N]" t)
143 (const :tag "Offer automatic [fn:N] for editing" confirm)
144 (const :tag "Create a random label" random)))
146 (defcustom org-footnote-auto-adjust nil
147 "Non-nil means automatically adjust footnotes after insert/delete.
148 When this is t, after each insertion or deletion of a footnote,
149 simple fn:N footnotes will be renumbered, and all footnotes will be sorted.
150 If you want to have just sorting or just renumbering, set this variable
151 to `sort' or `renumber'.
153 The main values of this variable can be set with in-buffer options:
155 #+STARTUP: fnadjust
156 #+STARTUP: nofnadjust"
157 :group 'org-footnote
158 :type '(choice
159 (const :tag "No adjustment" nil)
160 (const :tag "Renumber" renumber)
161 (const :tag "Sort" sort)
162 (const :tag "Renumber and Sort" t)))
164 (defcustom org-footnote-fill-after-inline-note-extraction nil
165 "Non-nil means fill paragraphs after extracting footnotes.
166 When extracting inline footnotes, the lengths of lines can change a lot.
167 When this option is set, paragraphs from which an inline footnote has been
168 extracted will be filled again."
169 :group 'org-footnote
170 :type 'boolean)
173 ;;;; Predicates
175 (defun org-footnote-in-valid-context-p ()
176 "Is point in a context where footnotes are allowed?"
177 (save-match-data
178 (not (or (org-at-comment-p)
179 (org-inside-LaTeX-fragment-p)
180 ;; Avoid literal example.
181 (org-in-verbatim-emphasis)
182 (save-excursion
183 (beginning-of-line)
184 (looking-at "[ \t]*:[ \t]+"))
185 ;; Avoid forbidden blocks.
186 (org-in-block-p org-footnote-forbidden-blocks)))))
188 (defun org-footnote-at-reference-p ()
189 "Is the cursor at a footnote reference?
191 If so, return a list containing its label, beginning and ending
192 positions, and the definition, when inlined."
193 (when (and (org-footnote-in-valid-context-p)
194 (or (looking-at org-footnote-re)
195 (org-in-regexp org-footnote-re)
196 (save-excursion (re-search-backward org-footnote-re nil t)))
197 (/= (match-beginning 0) (line-beginning-position)))
198 (let* ((beg (match-beginning 0))
199 (label (match-string-no-properties 1))
200 ;; Inline footnotes don't end at (match-end 0) as
201 ;; `org-footnote-re' stops just after the second colon.
202 ;; Find the real ending with `scan-sexps', so Org doesn't
203 ;; get fooled by unrelated closing square brackets.
204 (end (ignore-errors (scan-sexps beg 1))))
205 ;; Point is really at a reference if it's located before true
206 ;; ending of the footnote.
207 (when (and end
208 (< (point) end)
209 ;; Verify match isn't a part of a link.
210 (not (save-excursion
211 (goto-char beg)
212 (let ((linkp
213 (save-match-data
214 (org-in-regexp org-bracket-link-regexp))))
215 (and linkp (< (point) (cdr linkp))))))
216 ;; Verify point doesn't belong to a LaTeX macro.
217 (not (org-inside-latex-macro-p)))
218 (list label beg end
219 ;; Definition: ensure this is an inline footnote first.
220 (and (match-end 2)
221 (org-trim
222 (buffer-substring-no-properties
223 (match-end 0) (1- end)))))))))
225 (defun org-footnote-at-definition-p ()
226 "Is point within a footnote definition?
228 This matches only pure definitions like [1] or [fn:name] at the
229 beginning of a line. It does not match references like
230 \[fn:name:definition], where the footnote text is included and
231 defined locally.
233 The return value will be nil if not at a footnote definition, and
234 a list with label, start, end and definition of the footnote
235 otherwise."
236 (when (save-excursion (beginning-of-line) (org-footnote-in-valid-context-p))
237 (save-excursion
238 (end-of-line)
239 ;; Footnotes definitions are separated by new headlines, another
240 ;; footnote definition or 2 blank lines.
241 (let ((lim (save-excursion
242 (re-search-backward
243 (concat org-outline-regexp-bol
244 "\\|^\\([ \t]*\n\\)\\{2,\\}") nil t))))
245 (when (re-search-backward org-footnote-definition-re lim t)
246 (let ((label (match-string-no-properties 1))
247 (beg (match-beginning 0))
248 (beg-def (match-end 0))
249 (end (if (progn
250 (end-of-line)
251 (re-search-forward
252 (concat org-outline-regexp-bol "\\|"
253 org-footnote-definition-re "\\|"
254 "^\\([ \t]*\n\\)\\{2,\\}") nil 'move))
255 (match-beginning 0)
256 (point))))
257 (list label beg end
258 (org-trim (buffer-substring-no-properties beg-def end)))))))))
261 ;;;; Internal functions
263 (defun org-footnote--allow-reference-p ()
264 "Non-nil when a footnote reference can be inserted at point."
265 ;; XXX: This is similar to `org-footnote-in-valid-context-p' but
266 ;; more accurate and usually faster, except in some corner cases.
267 ;; It may replace it after doing proper benchmarks as it would be
268 ;; used in fontification.
269 (unless (bolp)
270 (let* ((context (org-element-context))
271 (type (org-element-type context)))
272 (cond
273 ;; No footnote reference in attributes.
274 ((let ((post (org-element-property :post-affiliated context)))
275 (and post (< (point) post)))
276 nil)
277 ;; Paragraphs and blank lines at top of document are fine.
278 ((memq type '(nil paragraph)))
279 ;; So are contents of verse blocks.
280 ((eq type 'verse-block)
281 (and (>= (point) (org-element-property :contents-begin context))
282 (< (point) (org-element-property :contents-end context))))
283 ;; In an headline or inlinetask, point must be either on the
284 ;; heading itself or on the blank lines below.
285 ((memq type '(headline inlinetask))
286 (or (not (org-at-heading-p))
287 (and (save-excursion
288 (beginning-of-line)
289 (and (let ((case-fold-search t))
290 (not (looking-at-p "\\*+ END[ \t]*$")))
291 (let ((case-fold-search nil))
292 (looking-at org-complex-heading-regexp))))
293 (match-beginning 4)
294 (>= (point) (match-beginning 4))
295 (or (not (match-beginning 5))
296 (< (point) (match-beginning 5))))))
297 ;; White spaces after an object or blank lines after an element
298 ;; are OK.
299 ((>= (point)
300 (save-excursion (goto-char (org-element-property :end context))
301 (skip-chars-backward " \r\t\n")
302 (if (eq (org-element-class context) 'object) (point)
303 (1+ (line-beginning-position 2))))))
304 ;; Other elements are invalid.
305 ((eq (org-element-class context) 'element) nil)
306 ;; Just before object is fine.
307 ((= (point) (org-element-property :begin context)))
308 ;; Within recursive object too, but not in a link.
309 ((eq type 'link) nil)
310 ((let ((cbeg (org-element-property :contents-begin context))
311 (cend (org-element-property :contents-end context)))
312 (and cbeg (>= (point) cbeg) (<= (point) cend))))))))
314 (defun org-footnote--clear-footnote-section ()
315 "Remove all footnote sections in buffer and create a new one.
316 New section is created at the end of the buffer. Leave point
317 within the new section."
318 (when org-footnote-section
319 (goto-char (point-min))
320 (let ((regexp (format "^\\*+ +%s[ \t]*$"
321 (regexp-quote org-footnote-section))))
322 (while (re-search-forward regexp nil t)
323 (delete-region
324 (match-beginning 0)
325 (org-end-of-subtree t t))))
326 (goto-char (point-max))
327 ;; Clean-up blank lines at the end of the buffer.
328 (skip-chars-backward " \r\t\n")
329 (unless (bobp)
330 (forward-line)
331 (when (eolp) (insert "\n")))
332 (delete-region (point) (point-max))
333 (when (and (cdr (assq 'heading org-blank-before-new-entry))
334 (zerop (save-excursion (org-back-over-empty-lines))))
335 (insert "\n"))
336 (insert "* " org-footnote-section "\n")))
338 (defun org-footnote--set-label (label)
339 "Set label of footnote at point to string LABEL.
340 Assume point is at the beginning of the reference or definition
341 to rename."
342 (forward-char 4)
343 (cond ((eq (char-after) ?:) (insert label))
344 ((looking-at "\\([-_[:word:]]+\\)") (replace-match label nil nil nil 1))
345 (t nil)))
347 (defun org-footnote--collect-references (&optional anonymous)
348 "Collect all labeled footnote references in current buffer.
350 Return an alist where associations follow the pattern
352 (LABEL MARKER TOP-LEVEL SIZE)
354 with
356 LABEL the label of the of the definition,
357 MARKER a marker pointing to its beginning,
358 TOP-LEVEL a boolean, nil when the footnote is contained within
359 another one,
360 SIZE the length of the inline definition, in characters,
361 or nil for non-inline references.
363 When optional ANONYMOUS is non-nil, also collect anonymous
364 references. In such cases, LABEL is nil.
366 References are sorted according to a deep-reading order."
367 (org-with-wide-buffer
368 (goto-char (point-min))
369 (let ((regexp (if anonymous org-footnote-re "\\[fn:[-_[:word:]]+[]:]"))
370 references nested)
371 (save-excursion
372 (while (re-search-forward regexp nil t)
373 ;; Ignore definitions.
374 (unless (and (eq (char-before) ?\])
375 (= (line-beginning-position) (match-beginning 0)))
376 ;; Ensure point is within the reference before parsing it.
377 (backward-char)
378 (let ((object (org-element-context)))
379 (when (eq (org-element-type object) 'footnote-reference)
380 (let* ((label (org-element-property :label object))
381 (begin (org-element-property :begin object))
382 (size
383 (and (eq (org-element-property :type object) 'inline)
384 (- (org-element-property :contents-end object)
385 (org-element-property :contents-begin object)))))
386 (let ((d (org-element-lineage object '(footnote-definition))))
387 (push (list label (copy-marker begin) (not d) size)
388 references)
389 (when d
390 ;; Nested references are stored in alist NESTED.
391 ;; Associations there follow the pattern
393 ;; (DEFINITION-LABEL . REFERENCES)
394 (let* ((def-label (org-element-property :label d))
395 (labels (assoc def-label nested)))
396 (if labels (push label (cdr labels))
397 (push (list def-label label) nested)))))))))))
398 ;; Sort the list of references. Nested footnotes have priority
399 ;; over top-level ones.
400 (letrec ((ordered nil)
401 (add-reference
402 (lambda (ref allow-nested)
403 (when (or allow-nested (nth 2 ref))
404 (push ref ordered)
405 (dolist (r (mapcar (lambda (l) (assoc l references))
406 (reverse
407 (cdr (assoc (nth 0 ref) nested)))))
408 (funcall add-reference r t))))))
409 (dolist (r (reverse references) (nreverse ordered))
410 (funcall add-reference r nil))))))
412 (defun org-footnote--collect-definitions (&optional delete)
413 "Collect all footnote definitions in current buffer.
415 Return an alist where associations follow the pattern
417 (LABEL . DEFINITION)
419 with LABEL and DEFINITION being, respectively, the label and the
420 definition of the footnote, as strings.
422 When optional argument DELETE is non-nil, delete the definition
423 while collecting them."
424 (org-with-wide-buffer
425 (goto-char (point-min))
426 (let (definitions seen)
427 (while (re-search-forward org-footnote-definition-re nil t)
428 (backward-char)
429 (let ((element (org-element-at-point)))
430 (let ((label (org-element-property :label element)))
431 (when (and (eq (org-element-type element) 'footnote-definition)
432 (not (member label seen)))
433 (push label seen)
434 (let* ((beg (progn
435 (goto-char (org-element-property :begin element))
436 (skip-chars-backward " \r\t\n")
437 (if (bobp) (point) (line-beginning-position 2))))
438 (end (progn
439 (goto-char (org-element-property :end element))
440 (skip-chars-backward " \r\t\n")
441 (line-beginning-position 2)))
442 (def (org-trim (buffer-substring-no-properties beg end))))
443 (push (cons label def) definitions)
444 (when delete (delete-region beg end)))))))
445 definitions)))
447 (defun org-footnote--goto-local-insertion-point ()
448 "Find insertion point for footnote, just before next outline heading.
449 Assume insertion point is within currently accessible part of the buffer."
450 (org-with-limited-levels (outline-next-heading))
451 (skip-chars-backward " \t\n")
452 (unless (bobp) (forward-line))
453 (unless (bolp) (insert "\n")))
456 ;;;; Navigation
458 (defun org-footnote-get-next-reference (&optional label backward limit)
459 "Return complete reference of the next footnote.
461 If LABEL is provided, get the next reference of that footnote. If
462 BACKWARD is non-nil, find previous reference instead. LIMIT is
463 the buffer position bounding the search.
465 Return value is a list like those provided by `org-footnote-at-reference-p'.
466 If no footnote is found, return nil."
467 (save-excursion
468 (let* ((label-fmt (if label (format "\\[fn:%s[]:]" label) org-footnote-re)))
469 (catch 'exit
470 (while t
471 (unless (funcall (if backward #'re-search-backward #'re-search-forward)
472 label-fmt limit t)
473 (throw 'exit nil))
474 (unless backward (backward-char))
475 (let ((ref (org-footnote-at-reference-p)))
476 (when ref (throw 'exit ref))))))))
478 (defun org-footnote-next-reference-or-definition (limit)
479 "Move point to next footnote reference or definition.
481 LIMIT is the buffer position bounding the search.
483 Return value is a list like those provided by
484 `org-footnote-at-reference-p' or `org-footnote-at-definition-p'.
485 If no footnote is found, return nil."
486 (let* (ref (origin (point)))
487 (catch 'exit
488 (while t
489 (unless (re-search-forward org-footnote-re limit t)
490 (goto-char origin)
491 (throw 'exit nil))
492 ;; Beware: with non-inline footnotes point will be just after
493 ;; the closing square bracket.
494 (backward-char)
495 (cond
496 ((setq ref (org-footnote-at-reference-p))
497 (throw 'exit ref))
498 ;; Definition: also grab the last square bracket, matched in
499 ;; `org-footnote-re' for non-inline footnotes.
500 ((save-match-data (org-footnote-at-definition-p))
501 (let ((end (match-end 0)))
502 (throw 'exit
503 (list nil (match-beginning 0)
504 (if (eq (char-before end) ?\]) end (1+ end)))))))))))
506 (defun org-footnote-goto-definition (label &optional location)
507 "Move point to the definition of the footnote LABEL.
509 LOCATION, when non-nil specifies the buffer position of the
510 definition.
512 Throw an error if there is no definition or if it cannot be
513 reached from current narrowed part of buffer. Return a non-nil
514 value if point was successfully moved."
515 (interactive "sLabel: ")
516 (let* ((label (org-footnote-normalize-label label))
517 (def-start (or location (nth 1 (org-footnote-get-definition label)))))
518 (cond
519 ((not def-start)
520 (user-error "Cannot find definition of footnote %s" label))
521 ((or (> def-start (point-max)) (< def-start (point-min)))
522 (user-error "Definition is outside narrowed part of buffer")))
523 (org-mark-ring-push)
524 (goto-char def-start)
525 (looking-at (format "\\[fn:%s[]:] ?" (regexp-quote label)))
526 (goto-char (match-end 0))
527 (org-show-context 'link-search)
528 (when (derived-mode-p 'org-mode)
529 (message "%s" (substitute-command-keys
530 "Edit definition and go back with \
531 `\\[org-mark-ring-goto]' or, if unique, with `\\[org-ctrl-c-ctrl-c]'.")))
534 (defun org-footnote-goto-previous-reference (label)
535 "Find the first closest (to point) reference of footnote with label LABEL."
536 (interactive "sLabel: ")
537 (org-mark-ring-push)
538 (let ((label (org-footnote-normalize-label label))
539 ref)
540 (save-excursion
541 (setq ref (or (org-footnote-get-next-reference label t)
542 (org-footnote-get-next-reference label)
543 (save-restriction
544 (widen)
546 (org-footnote-get-next-reference label t)
547 (org-footnote-get-next-reference label))))))
548 (if (not ref)
549 (error "Cannot find reference of footnote %s" label)
550 (goto-char (nth 1 ref))
551 (org-show-context 'link-search))))
554 ;;;; Getters
556 (defun org-footnote-normalize-label (label)
557 "Return LABEL without \"fn:\" prefix.
558 If LABEL is the empty string or constituted of white spaces only,
559 return nil instead."
560 (pcase (org-trim label)
561 ("" nil)
562 ((pred (string-prefix-p "fn:")) (substring label 3))
563 (_ label)))
565 (defun org-footnote-get-definition (label)
566 "Return label, boundaries and definition of the footnote LABEL."
567 (let* ((label (regexp-quote (org-footnote-normalize-label label)))
568 (re (format "^\\[fn:%s\\]\\|.\\[fn:%s:" label label)))
569 (org-with-wide-buffer
570 (goto-char (point-min))
571 (catch 'found
572 (while (re-search-forward re nil t)
573 (let* ((datum (progn (backward-char) (org-element-context)))
574 (type (org-element-type datum)))
575 (when (memq type '(footnote-definition footnote-reference))
576 (throw 'found
577 (list
578 label
579 (org-element-property :begin datum)
580 (org-element-property :end datum)
581 (let ((cbeg (org-element-property :contents-begin datum)))
582 (if (not cbeg) ""
583 (replace-regexp-in-string
584 "[ \t\n]*\\'"
586 (buffer-substring-no-properties
587 cbeg
588 (org-element-property :contents-end datum))))))))))
589 nil))))
591 (defun org-footnote-all-labels ()
592 "List all defined footnote labels used throughout the buffer.
593 This function ignores narrowing, if any."
594 (org-with-wide-buffer
595 (goto-char (point-min))
596 (let (all)
597 (while (re-search-forward org-footnote-re nil t)
598 (backward-char)
599 (let ((context (org-element-context)))
600 (when (memq (org-element-type context)
601 '(footnote-definition footnote-reference))
602 (let ((label (org-element-property :label context)))
603 (when label (cl-pushnew label all :test #'equal))))))
604 all)))
606 (defun org-footnote-unique-label (&optional current)
607 "Return a new unique footnote label.
609 The function returns the first numeric label currently unused.
611 Optional argument CURRENT is the list of labels active in the
612 buffer."
613 (let ((current (or current (org-footnote-all-labels))))
614 (let ((count 1))
615 (while (member (number-to-string count) current)
616 (cl-incf count))
617 (number-to-string count))))
620 ;;;; Adding, Deleting Footnotes
622 (defun org-footnote-new ()
623 "Insert a new footnote.
624 This command prompts for a label. If this is a label referencing an
625 existing label, only insert the label. If the footnote label is empty
626 or new, let the user edit the definition of the footnote."
627 (interactive)
628 (unless (org-footnote--allow-reference-p)
629 (user-error "Cannot insert a footnote here"))
630 (let* ((all (org-footnote-all-labels))
631 (label
632 (if (eq org-footnote-auto-label 'random)
633 (format "%x" (random most-positive-fixnum))
634 (org-footnote-normalize-label
635 (let ((propose (org-footnote-unique-label all)))
636 (if (eq org-footnote-auto-label t) propose
637 (completing-read
638 "Label (leave empty for anonymous): "
639 (mapcar #'list all) nil nil
640 (and (eq org-footnote-auto-label 'confirm) propose))))))))
641 (cond ((not label)
642 (insert "[fn::]")
643 (backward-char 1))
644 ((member label all)
645 (insert "[fn:" label "]")
646 (message "New reference to existing note"))
647 (org-footnote-define-inline
648 (insert "[fn:" label ":]")
649 (backward-char 1)
650 (org-footnote-auto-adjust-maybe))
652 (insert "[fn:" label "]")
653 (let ((p (org-footnote-create-definition label)))
654 ;; `org-footnote-goto-definition' needs to be called
655 ;; after `org-footnote-auto-adjust-maybe'. Otherwise
656 ;; both label and location of the definition are lost.
657 ;; On the contrary, it needs to be called before
658 ;; `org-edit-footnote-reference' so that the remote
659 ;; editing buffer can display the correct label.
660 (if (ignore-errors (org-footnote-goto-definition label p))
661 (org-footnote-auto-adjust-maybe)
662 ;; Definition was created outside current scope: edit
663 ;; it remotely.
664 (org-footnote-auto-adjust-maybe)
665 (org-edit-footnote-reference)))))))
667 (defun org-footnote-create-definition (label)
668 "Start the definition of a footnote with label LABEL.
669 Return buffer position at the beginning of the definition. This
670 function doesn't move point."
671 (let ((label (org-footnote-normalize-label label))
672 electric-indent-mode) ; Prevent wrong indentation.
673 (org-preserve-local-variables
674 (org-with-wide-buffer
675 (cond
676 ((not org-footnote-section) (org-footnote--goto-local-insertion-point))
677 ((save-excursion
678 (goto-char (point-min))
679 (re-search-forward
680 (concat "^\\*+[ \t]+" (regexp-quote org-footnote-section) "[ \t]*$")
681 nil t))
682 (goto-char (match-end 0))
683 (forward-line)
684 (unless (bolp) (insert "\n")))
685 (t (org-footnote--clear-footnote-section)))
686 (when (zerop (org-back-over-empty-lines)) (insert "\n"))
687 (insert "[fn:" label "] \n")
688 (line-beginning-position 0)))))
690 (defun org-footnote-delete-references (label)
691 "Delete every reference to footnote LABEL.
692 Return the number of footnotes removed."
693 (save-excursion
694 (goto-char (point-min))
695 (let (ref (nref 0))
696 (while (setq ref (org-footnote-get-next-reference label))
697 (goto-char (nth 1 ref))
698 (delete-region (nth 1 ref) (nth 2 ref))
699 (cl-incf nref))
700 nref)))
702 (defun org-footnote-delete-definitions (label)
703 "Delete every definition of the footnote LABEL.
704 Return the number of footnotes removed."
705 (save-excursion
706 (goto-char (point-min))
707 (let ((def-re (format "^\\[fn:%s\\]" (regexp-quote label)))
708 (ndef 0))
709 (while (re-search-forward def-re nil t)
710 (pcase (org-footnote-at-definition-p)
711 (`(,_ ,start ,end ,_)
712 ;; Remove the footnote, and all blank lines before it.
713 (delete-region (progn
714 (goto-char start)
715 (skip-chars-backward " \r\t\n")
716 (if (bobp) (point) (line-beginning-position 2)))
717 (progn
718 (goto-char end)
719 (skip-chars-backward " \r\t\n")
720 (if (bobp) (point) (line-beginning-position 2))))
721 (cl-incf ndef))))
722 ndef)))
724 (defun org-footnote-delete (&optional label)
725 "Delete the footnote at point.
726 This will remove the definition (even multiple definitions if they exist)
727 and all references of a footnote label.
729 If LABEL is non-nil, delete that footnote instead."
730 (catch 'done
731 (org-preserve-local-variables
732 (let* ((nref 0) (ndef 0) x
733 ;; 1. Determine LABEL of footnote at point.
734 (label (cond
735 ;; LABEL is provided as argument.
736 (label)
737 ;; Footnote reference at point. If the footnote is
738 ;; anonymous, delete it and exit instead.
739 ((setq x (org-footnote-at-reference-p))
740 (or (car x)
741 (progn
742 (delete-region (nth 1 x) (nth 2 x))
743 (message "Anonymous footnote removed")
744 (throw 'done t))))
745 ;; Footnote definition at point.
746 ((setq x (org-footnote-at-definition-p))
747 (car x))
748 (t (error "Don't know which footnote to remove")))))
749 ;; 2. Now that LABEL is non-nil, find every reference and every
750 ;; definition, and delete them.
751 (setq nref (org-footnote-delete-references label)
752 ndef (org-footnote-delete-definitions label))
753 ;; 3. Verify consistency of footnotes and notify user.
754 (org-footnote-auto-adjust-maybe)
755 (message "%d definition(s) of and %d reference(s) of footnote %s removed"
756 ndef nref label)))))
759 ;;;; Sorting, Renumbering, Normalizing
761 (defun org-footnote-renumber-fn:N ()
762 "Order numbered footnotes into a sequence in the document."
763 (interactive)
764 (let* ((c 0)
765 (references (cl-remove-if-not
766 (lambda (r) (string-match-p "\\`[0-9]+\\'" (car r)))
767 (org-footnote--collect-references)))
768 (alist (mapcar (lambda (l) (cons l (number-to-string (cl-incf c))))
769 (delete-dups (mapcar #'car references)))))
770 (org-with-wide-buffer
771 ;; Re-number references.
772 (dolist (ref references)
773 (goto-char (nth 1 ref))
774 (org-footnote--set-label (cdr (assoc (nth 0 ref) alist))))
775 ;; Re-number definitions.
776 (goto-char (point-min))
777 (while (re-search-forward "^\\[fn:\\([0-9]+\\)\\]" nil t)
778 (replace-match (or (cdr (assoc (match-string 1) alist))
779 ;; Un-referenced definitions get higher
780 ;; numbers.
781 (number-to-string (cl-incf c)))
782 nil nil nil 1)))))
784 (defun org-footnote-sort ()
785 "Rearrange footnote definitions in the current buffer.
786 Sort footnote definitions so they match order of footnote
787 references. Also relocate definitions at the end of their
788 relative section or within a single footnote section, according
789 to `org-footnote-section'. Inline definitions are ignored."
790 (let ((references (org-footnote--collect-references)))
791 (org-preserve-local-variables
792 (let ((definitions (org-footnote--collect-definitions 'delete)))
793 (org-with-wide-buffer
794 (org-footnote--clear-footnote-section)
795 ;; Insert footnote definitions at the appropriate location,
796 ;; separated by a blank line. Each definition is inserted
797 ;; only once throughout the buffer.
798 (let (inserted)
799 (dolist (cell references)
800 (let ((label (car cell))
801 (nested (not (nth 2 cell)))
802 (inline (nth 3 cell)))
803 (unless (or (member label inserted) inline)
804 (push label inserted)
805 (unless (or org-footnote-section nested)
806 ;; If `org-footnote-section' is non-nil, or
807 ;; reference is nested, point is already at the
808 ;; correct position. Otherwise, move at the
809 ;; appropriate location within the section
810 ;; containing the reference.
811 (goto-char (nth 1 cell))
812 (org-footnote--goto-local-insertion-point))
813 (insert "\n"
814 (or (cdr (assoc label definitions))
815 (format "[fn:%s] DEFINITION NOT FOUND." label))
816 "\n"))))
817 ;; Insert un-referenced footnote definitions at the end.
818 (pcase-dolist (`(,label . ,definition) definitions)
819 (unless (member label inserted)
820 (insert "\n" definition "\n")))))))))
822 (defun org-footnote-normalize ()
823 "Turn every footnote in buffer into a numbered one."
824 (interactive)
825 (org-preserve-local-variables
826 (let ((n 0)
827 (translations nil)
828 (definitions nil)
829 (references (org-footnote--collect-references 'anonymous)))
830 (org-with-wide-buffer
831 ;; Update label for reference. We need to do this before
832 ;; clearing definitions in order to rename nested footnotes
833 ;; before they are deleted.
834 (dolist (cell references)
835 (let* ((label (car cell))
836 (anonymous (not label))
837 (new
838 (cond
839 ;; In order to differentiate anonymous references
840 ;; from regular ones, set their labels to integers,
841 ;; not strings.
842 (anonymous (setcar cell (cl-incf n)))
843 ((cdr (assoc label translations)))
844 (t (let ((l (number-to-string (cl-incf n))))
845 (push (cons label l) translations)
846 l)))))
847 (goto-char (nth 1 cell)) ; Move to reference's start.
848 (org-footnote--set-label
849 (if anonymous (number-to-string new) new))
850 (let ((size (nth 3 cell)))
851 ;; Transform inline footnotes into regular references and
852 ;; retain their definition for later insertion as
853 ;; a regular footnote definition.
854 (when size
855 (let ((def (concat
856 (format "[fn:%s] " new)
857 (org-trim
858 (substring
859 (delete-and-extract-region
860 (point) (+ (point) size 1))
861 1)))))
862 (push (cons (if anonymous new label) def) definitions)
863 (when org-footnote-fill-after-inline-note-extraction
864 (org-fill-paragraph)))))))
865 ;; Collect definitions. Update labels according to ALIST.
866 (let ((definitions
867 (nconc definitions
868 (org-footnote--collect-definitions 'delete)))
869 (inserted))
870 (org-footnote--clear-footnote-section)
871 (dolist (cell references)
872 (let* ((label (car cell))
873 (anonymous (integerp label))
874 (pos (nth 1 cell)))
875 ;; Move to appropriate location, if required. When there
876 ;; is a footnote section or reference is nested, point is
877 ;; already at the expected location.
878 (unless (or org-footnote-section (not (nth 2 cell)))
879 (goto-char pos)
880 (org-footnote--goto-local-insertion-point))
881 ;; Insert new definition once label is updated.
882 (unless (member label inserted)
883 (push label inserted)
884 (let ((stored (cdr (assoc label definitions)))
885 ;; Anonymous footnotes' label is already
886 ;; up-to-date.
887 (new (if anonymous label
888 (cdr (assoc label translations)))))
889 (insert "\n"
890 (cond
891 ((not stored)
892 (format "[fn:%s] DEFINITION NOT FOUND." new))
893 (anonymous stored)
895 (replace-regexp-in-string
896 "\\`\\[fn:\\(.*?\\)\\]" new stored nil nil 1)))
897 "\n")))))
898 ;; Insert un-referenced footnote definitions at the end.
899 (pcase-dolist (`(,label . ,definition) definitions)
900 (unless (member label inserted)
901 (insert "\n"
902 (replace-regexp-in-string org-footnote-definition-re
903 (format "[fn:%d]" (cl-incf n))
904 definition)
905 "\n"))))))))
907 (defun org-footnote-auto-adjust-maybe ()
908 "Renumber and/or sort footnotes according to user settings."
909 (when (memq org-footnote-auto-adjust '(t renumber))
910 (org-footnote-renumber-fn:N))
911 (when (memq org-footnote-auto-adjust '(t sort))
912 (let ((label (car (org-footnote-at-definition-p))))
913 (org-footnote-sort)
914 (when label
915 (goto-char (point-min))
916 (and (re-search-forward (format "^\\[fn:%s\\]" (regexp-quote label))
917 nil t)
918 (progn (insert " ")
919 (just-one-space)))))))
922 ;;;; End-user interface
924 ;;;###autoload
925 (defun org-footnote-action (&optional special)
926 "Do the right thing for footnotes.
928 When at a footnote reference, jump to the definition.
930 When at a definition, jump to the references if they exist, offer
931 to create them otherwise.
933 When neither at definition or reference, create a new footnote,
934 interactively if possible.
936 With prefix arg SPECIAL, or when no footnote can be created,
937 offer additional commands in a menu."
938 (interactive "P")
939 (let* ((context (and (not special) (org-element-context)))
940 (type (org-element-type context)))
941 (cond
942 ;; On white space after element, insert a new footnote.
943 ((and context
944 (> (point)
945 (save-excursion
946 (goto-char (org-element-property :end context))
947 (skip-chars-backward " \t")
948 (point))))
949 (org-footnote-new))
950 ((eq type 'footnote-reference)
951 (let ((label (org-element-property :label context)))
952 (cond
953 ;; Anonymous footnote: move point at the beginning of its
954 ;; definition.
955 ((not label)
956 (goto-char (org-element-property :contents-begin context)))
957 ;; Check if a definition exists: then move to it.
958 ((let ((p (nth 1 (org-footnote-get-definition label))))
959 (when p (org-footnote-goto-definition label p))))
960 ;; No definition exists: offer to create it.
961 ((yes-or-no-p (format "No definition for %s. Create one? " label))
962 (let ((p (org-footnote-create-definition label)))
963 (or (ignore-errors (org-footnote-goto-definition label p))
964 ;; Since definition was created outside current scope,
965 ;; edit it remotely.
966 (org-edit-footnote-reference)))))))
967 ((eq type 'footnote-definition)
968 (org-footnote-goto-previous-reference
969 (org-element-property :label context)))
970 ((or special (not (org-footnote--allow-reference-p)))
971 (message "Footnotes: [s]ort | [r]enumber fn:N | [S]=r+s | [n]ormalize | \
972 \[d]elete")
973 (pcase (read-char-exclusive)
974 (?s (org-footnote-sort))
975 (?r (org-footnote-renumber-fn:N))
976 (?S (org-footnote-renumber-fn:N)
977 (org-footnote-sort))
978 (?n (org-footnote-normalize))
979 (?d (org-footnote-delete))
980 (char (error "No such footnote command %c" char))))
981 (t (org-footnote-new)))))
984 (provide 'org-footnote)
986 ;; Local variables:
987 ;; generated-autoload-file: "org-loaddefs.el"
988 ;; End:
990 ;;; org-footnote.el ends here