diff options
Diffstat (limited to 'lisp/org/ox.el')
-rw-r--r-- | lisp/org/ox.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/org/ox.el b/lisp/org/ox.el index 1b52f3968f7..7bdac4f290d 100644 --- a/lisp/org/ox.el +++ b/lisp/org/ox.el @@ -3699,7 +3699,9 @@ the communication channel used for export, as a plist." :translate-alist all-transcoders :exported-data (make-hash-table :test #'eq :size 401))))) ;; `:internal-references' are shared across back-ends. - (prog1 (funcall transcoder data contents new-info) + (prog1 (if (eq type 'plain-text) + (funcall transcoder data new-info) + (funcall transcoder data contents new-info)) (plist-put info :internal-references (plist-get new-info :internal-references))))))) |