>From a873d204b2c4f3facf2d8658f69764acbd063246 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Wed, 3 Jul 2013 17:51:56 -0400 Subject: [PATCH] ox-html: Allow "Figure %d:", etc. to be styled * lisp/ox-html.el (org-html-paragraph): Wrap "Figure %d:" in . (org-html-list-of-tables, org-html-table): Wrap "Table %d:" in . (org-html-list-of-listings): Wrap "Listing %d:" in . * doc/org.text (CSS support): Mention .figure-number, .listing-number, and .table-number. I didn't change org-html-style-default, so these labels won't appear special by default. TINYCHANGE --- doc/org.texi | 3 +++ lisp/ox-html.el | 14 +++++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index 4eb9a45..ce4f715 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -11337,6 +11337,9 @@ p.creator @r{creator info, about org mode version} div.outline-N @r{div for outline level N (headline plus text))} div.outline-text-N @r{extra div for text at outline level N} .section-number-N @r{section number in headlines, different for each level} +.figure-number @r{label like "Figure 1:"} +.table-number @r{label like "Table 1:"} +.listing-number @r{label like "Listing 1:"} div.figure @r{how to format an inlined image} pre.src @r{formatted source code} pre.example @r{normal example} diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 9ce73c4..b0417e8 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -2009,7 +2009,8 @@ of listings as a string, or nil if it is empty." org-html-toplevel-hlevel) "
\n
    \n" (let ((count 0) - (initial-fmt (org-html--translate "Listing %d:" info))) + (initial-fmt (format "%s" + (org-html--translate "Listing %d:" info)))) (mapconcat (lambda (entry) (let ((label (org-element-property :name entry)) @@ -2043,7 +2044,8 @@ of tables as a string, or nil if it is empty." org-html-toplevel-hlevel) "
    \n
      \n" (let ((count 0) - (initial-fmt (org-html--translate "Table %d:" info))) + (initial-fmt (format "%s" + (org-html--translate "Table %d:" info)))) (mapconcat (lambda (entry) (let ((label (org-element-property :name entry)) @@ -2790,12 +2792,13 @@ the plist used as a communication channel." 'org-html--has-caption-p)) (if (not (org-string-nw-p raw)) raw (concat + "" (format (org-html--translate "Figure %d:" info) (org-export-get-ordinal (org-element-map paragraph 'link 'identity info t) info nil 'org-html-standalone-image-p)) - " " raw)))) + " " raw)))) (label (org-element-property :name paragraph))) (org-html--wrap-image contents info caption label))) ;; Regular paragraph. @@ -3204,8 +3207,9 @@ contextual information." "%s" "%s") (concat - (format (org-html--translate "Table %d:" info) number) - " " (org-export-data caption info)))) + "" + (format (org-html--translate "Table %d:" info) number) + " " (org-export-data caption info)))) (funcall table-column-specs table info) contents))))) -- 1.8.1.2