Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2017-10-19 21:52:18 +02:00
commit 0cc59cea23

View file

@ -285,6 +285,10 @@ This function shouldn't be used for floats. See
output
(concat (format "%s\n.br\n" label) output))))
(defun org-man--protect-text (text)
"Protect minus and backslash characters in string TEXT."
(replace-regexp-in-string "-" "\\-" nil t))
;;; Template
@ -351,7 +355,8 @@ holding contextual information."
(defun org-man-code (code _contents _info)
"Transcode a CODE object from Org to Man."
(format "\\fC%s\\fP" (org-element-property :value code)))
(format "\\fC%s\\fP"
(org-man--protect-text (org-element-property :value code))))
;;; Drawer
@ -1029,7 +1034,8 @@ holding contextual information."
(defun org-man-verbatim (verbatim _contents _info)
"Transcode a VERBATIM object from Org to Man."
(format ".nf\n%s\n.fi" (org-element-property :value verbatim)))
(format "\\fI%s\\fP"
(org-man--protect-text (org-element-property :value verbatim))))
;;; Verse Block