From 6ee0e547ddf1596496e558d1b7ab78f315f980ec Mon Sep 17 00:00:00 2001 From: yujie Date: Tue, 19 Jul 2016 15:28:52 +0800 Subject: [PATCH] Fixed #213. Do not embed online images. --- ox-reveal.el | 1 + 1 file changed, 1 insertion(+) diff --git a/ox-reveal.el b/ox-reveal.el index cd73f6c..8800f47 100644 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -838,6 +838,7 @@ CONTENTS is nil. INFO is a plist holding contextual information." the result is the Data URIs of the referenced image." (let* ((want-embed-image (and (plist-get info :reveal-single-file) (plist-get info :html-inline-images) + (string= "file" (org-element-property :type link)) (org-export-inline-image-p link (plist-get info :html-inline-image-rules)))) (raw-path (org-element-property :path link))