~bzg/org-contrib

67794f6f4c8a1fb794ea3b8beba31a525e51df10 — Ihor Radchenko 11 days ago 1547060
* lisp/org-bibtex-extras.el: Define group for custom variables

(org-bibtex-extras): New custom group.
(obe-bibtex-file):
(obe-html-link-base): Declare inside the custom group.
1 files changed, 8 insertions(+), 2 deletions(-)

M lisp/org-bibtex-extras.el
M lisp/org-bibtex-extras.el => lisp/org-bibtex-extras.el +8 -2
@@ 63,16 63,22 @@

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

(defgroup org-bibtex-extras nil
  "Extras for working with org-bibtex entries."
  :group 'org-bibtex)

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

(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))"
  :type 'string)
  :type 'string
  :group 'org-bibtex-extras)

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