Merge branch 'maint'
This commit is contained in:
commit
ff6fbaf395
|
@ -350,10 +350,8 @@ holding contextual information."
|
||||||
;;; Code
|
;;; Code
|
||||||
|
|
||||||
(defun org-man-code (code _contents _info)
|
(defun org-man-code (code _contents _info)
|
||||||
"Transcode a CODE object from Org to Man.
|
"Transcode a CODE object from Org to Man."
|
||||||
CONTENTS is nil. INFO is a plist used as a communication
|
(format "\\fC%s\\fP" (org-element-property :value code)))
|
||||||
channel."
|
|
||||||
(format "\\fC%s\\fP" code))
|
|
||||||
|
|
||||||
|
|
||||||
;;; Drawer
|
;;; Drawer
|
||||||
|
@ -1029,11 +1027,9 @@ holding contextual information."
|
||||||
|
|
||||||
;;; Verbatim
|
;;; Verbatim
|
||||||
|
|
||||||
(defun org-man-verbatim (_verbatim contents _info)
|
(defun org-man-verbatim (verbatim _contents _info)
|
||||||
"Transcode a VERBATIM object from Org to Man.
|
"Transcode a VERBATIM object from Org to Man."
|
||||||
CONTENTS is nil. INFO is a plist used as a communication
|
(format ".nf\n%s\n.fi" (org-element-property :value verbatim)))
|
||||||
channel."
|
|
||||||
(format ".nf\n%s\n.fi" contents))
|
|
||||||
|
|
||||||
|
|
||||||
;;; Verse Block
|
;;; Verse Block
|
||||||
|
|
Loading…
Reference in New Issue