소스 검색

drop cite options for non-latex backends

These options break citation handling for these other backends, so we
should just drop them.

* contrib/lisp/ox-bibtex.el (org-bibtex-merge-contiguous-citations):
  Drop citation options for HTML and ASCII export.
Eric Schulte 10 년 전
부모
커밋
076726fbb6
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. 6 3
      contrib/lisp/ox-bibtex.el

+ 6 - 3
contrib/lisp/ox-bibtex.el

@@ -250,8 +250,10 @@ Return new parse tree."
 (defun org-bibtex-merge-contiguous-citations (tree backend info)
   "Merge all contiguous citation in parse tree.
 As a side effect, this filter will also turn all \"cite\" links
-into \"\\cite{...}\" LaTeX fragments and will extract options
-into square brackets at the beginning of the \"\\cite\" command."
+into \"\\cite{...}\" LaTeX fragments and will extract options.
+Cite options are placed into square brackets at the beginning of
+the \"\\cite\" command for the LaTeX backend, and are removed for
+the HTML and ASCII backends."
   (when (org-export-derived-backend-p backend 'html 'latex 'ascii)
     (org-element-map tree '(link latex-fragment)
       (lambda (object)
@@ -282,7 +284,8 @@ into square brackets at the beginning of the \"\\cite\" command."
 		     (lambda (k)
 		       (if (string-match "^(\\([^)]\+\\))\\(.*\\)" k)
 			   (progn
-			     (setq option (format "[%s]" (match-string 1 k)))
+			     (when (org-export-derived-backend-p backend 'latex)
+			       (setq option (format "[%s]" (match-string 1 k))))
 			     (match-string 2 k))
 			 k))
 		     keys))