summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-03-12 08:44:11 +0100
committerBastien Guerry <bzg@altern.org>2013-03-12 08:44:11 +0100
commitd90d1071bafdb0664dbf83aec06dca8d26459882 (patch)
tree0d631613d366ad075d05f418a85ea1d5f380e189
parentfa23e009154671827c4507c579c07515377aa437 (diff)
downloadorg-mode-d90d1071bafdb0664dbf83aec06dca8d26459882.tar.gz
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.
-rw-r--r--lisp/ox-md.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/ox-md.el b/lisp/ox-md.el
index 9f500fc..959ecd1 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)