From d90d1071bafdb0664dbf83aec06dca8d26459882 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 12 Mar 2013 08:44:11 +0100 Subject: [PATCH] ox-md.el (md): Export underlined text as verbatim * ox-md.el (md): Export underlined text as verbatim. Thanks to Rick Frankel for suggesting this. --- lisp/ox-md.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/ox-md.el b/lisp/ox-md.el index 9f500fcfe..959ecd127 100644 --- a/lisp/ox-md.el +++ b/lisp/ox-md.el @@ -69,6 +69,7 @@ This variable can be set to either `atx' or `setext'." (org-open-file (org-md-export-to-markdown nil s v))))))) :translate-alist ((bold . org-md-bold) (code . org-md-verbatim) + (underline . org-md-verbatim) (comment . (lambda (&rest args) "")) (comment-block . (lambda (&rest args) "")) (example-block . org-md-example-block)