Procházet zdrojové kódy

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.
Bastien Guerry před 12 roky
rodič
revize
d90d1071ba
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      lisp/ox-md.el

+ 1 - 0
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)