summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-10-04 10:28:53 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-10-04 10:28:53 +0200
commitb7372638bcfdc4b3bacaded4a9cf17a195cee473 (patch)
treec41d794562a07ff54efeb2cd9bbe7e7699aa4b41
parent464bf73b74ef08198ab21502bedf1a7c3e1060aa (diff)
downloadorg-mode-b7372638bcfdc4b3bacaded4a9cf17a195cee473.tar.gz
Add "svg" as allowed files for images in HTML exort
* lisp/org-html.el (org-export-html-inline-image-extensions): Add "svg" as an allowed extension.
-rw-r--r--lisp/org-html.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-html.el b/lisp/org-html.el
index 2d225be..3fd7b72 100644
--- a/lisp/org-html.el
+++ b/lisp/org-html.el
@@ -387,7 +387,7 @@ be linked only."
(const :tag "When there is no description" maybe)))
(defcustom org-export-html-inline-image-extensions
- '("png" "jpeg" "jpg" "gif")
+ '("png" "jpeg" "jpg" "gif" "svg")
"Extensions of image files that can be inlined into HTML."
:group 'org-export-html
:type '(repeat (string :tag "Extension")))