~bzg/org-contrib

154706048a84c09a2b7257f0665c78b85bce5f99 — Ihor Radchenko 12 days ago 5eabbf2
* lisp/org-bibtex-extras.el: Declare defcustom types

(obe-bibtex-file):
(obe-html-link-base): Add :type definition.
1 files changed, 5 insertions(+), 3 deletions(-)

M lisp/org-bibtex-extras.el
M lisp/org-bibtex-extras.el => lisp/org-bibtex-extras.el +5 -3
@@ 63,14 63,16 @@

(declare-function org-trim "org" (s &optional keep-lead))

(defcustom obe-bibtex-file nil "File holding bibtex entries.")
(defcustom obe-bibtex-file nil
  "File holding bibtex entries."
  :type 'file)

(defcustom obe-html-link-base nil
  "Base of citation links.
For example, to point to your `obe-bibtex-file' use the following.

  (setq obe-html-link-base (format \"file:%s\" obe-bibtex-file))
")
  (setq obe-html-link-base (format \"file:%s\" obe-bibtex-file))"
  :type 'string)

(defvar obe-citations nil)
(defun obe-citations ()