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.
This commit is contained in:
Carsten Dominik 2010-10-04 10:28:53 +02:00
parent 464bf73b74
commit b7372638bc
1 changed files with 1 additions and 1 deletions

View File

@ -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")))