patch ox-rst to add caption for code-block

This commit is contained in:
2025-12-25 16:22:39 +01:00
parent 69860cad2c
commit e1c69f0824
3 changed files with 62 additions and 2 deletions

View File

@@ -1319,8 +1319,11 @@ holding contextual information."
"Transcode a SRC-BLOCK element from Org to reStructuredText.
CONTENTS holds the contents of the item. INFO is a plist holding
contextual information."
;; code is for inline within text
;; code-block (or the alias sourcecode) are for a separate block
(when (org-string-nw-p (org-element-property :value src-block))
(let* ((lang (org-element-property :language src-block))
(caption (org-export-get-caption src-block))
(label (org-element-property :name src-block))
(value (org-remove-indentation
(org-element-property :value src-block)))
@@ -1330,7 +1333,7 @@ contextual information."
(org-export-read-attribute :attr_rst src-block))
(class (plist-get attributes :class)))
(cond
;; Case 1.
;; Case 1. code-block directive.
((eq codeblockd 'code-block)
(let ((lst-lang
(or (cadr (assq (intern lang) org-rst-pygments-langs)) lang)))
@@ -1339,9 +1342,10 @@ contextual information."
(when num-start (format " :lineno-start: %s\n" (1+ num-start)))
(when class (format " :class: %s\n" class))
(when label (format " :name: %s\n" label))
(when caption (format " :caption: %s\n" (org-export-data caption info)))
"\n"
(org-rst--indent-string value org-rst-quote-margin))))
;; Case 2. code.
;; Case 2. code directive.
((eq codeblockd 'code)
(let ((lst-lang
(or (cadr (assq (intern lang) org-rst-pygments-langs)) lang)))
@@ -1352,6 +1356,7 @@ contextual information."
(when label (format " :name: %s\n" label))
"\n"
(org-rst--indent-string value org-rst-quote-margin))))
;; Case 3. literal block.
(t
(concat
"::\n"