>>> "JK" == John Kitchin <jkitc...@andrew.cmu.edu> writes:

> I guess you are using the older org-ref version 2 here. If so, there isn't
> a real way to customize that, it comes from org-ref-get-html-bibliography
> which hard codes an unordered list.

This kludge «solves» it 

(defun org-ref-get-html-bibliography (&optional sort)
  "Create an html bibliography when there are keys.
If one of SORT and `org-ref-bib-html-sorted' is non-nil,
the bibliography is alphabetically sorted."
  (let ((keys (org-ref-get-bibtex-keys (or sort org-ref-bib-html-sorted))))
    (when keys
      (concat org-ref-bib-html "<ul class='org-ref-bib'>"
              "\n<ol class=\"org-ol\">\n" ; a kludge to obtain a numbered list 
UB:18.02.2022:
              (mapconcat (lambda (x) (org-ref-get-bibtex-entry-html x)) keys 
"\n")
              "\n</ol>"                 ;second part of the kludge 
UB:18.02.2022:
              "\n</ul>"))))


> In version 3, you can use csl for this.

I remember running into issues with version 3. But in the future, if time
permits, I have to try it again.

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to