From 576ecdbbafcc95fcf1760fd4274b155512e09b60 Mon Sep 17 00:00:00 2001 From: chasberry Date: Tue, 11 Nov 2014 13:49:18 -0800 Subject: [PATCH 4/5] Inline src blocks are export-snippets * lisp/ox-man.org (org-man-export-snippet): Treat the babel `:back-end' export-snippet value as verbatim. --- lisp/ox-man.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ox-man.el b/lisp/ox-man.el index 76fa99d..4cd6cdf 100644 --- a/lisp/ox-man.el +++ b/lisp/ox-man.el @@ -450,7 +450,10 @@ CONTENTS is nil. INFO is a plist holding contextual information." (cond ((eq backend 'man) (org-element-property :value export-snippet)) ((eq backend 'babel) - (org-man-verbatim export-snippet contents info))))) + (org-man-verbatim + export-snippet + (org-element-property :value export-snippet) + info))))) -- 1.9.3 (Apple Git-50)