Hello, "Zane D. Purvis" <zane.pur...@gmail.com> writes:
Thanks for the patch. The summary line should be capitalized, i.e., ox-html: Add exporting of priority > * list/ox-html.el (org-html--priority): new function Capitalize, too. > (org-html-format-headline-default-function): call `org-html--priority' Ditto. > (org-html-style-default): add `.priority' Ditto. > +(defun org-html--priority (priority info) > + "Format a priority into HTML. > +PRIORITY is the character code of the priority or nil. > +INFO is a plist containing export options." > + (when priority > + (format "<span class=\"priority\">[%s]</span>" > + (byte-to-string priority)))) Shorter: (and priority (format "<span class=\"priority\">[%c]</span>" priority)) Could you fix these issues before I apply your patch? Regards, -- Nicolas Goaziou