Browse Source

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.
Carsten Dominik 14 years ago
parent
commit
b7372638bc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-html.el

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