|
@@ -848,16 +848,15 @@ link to the image."
|
|
|
:type 'boolean)
|
|
|
|
|
|
(defcustom org-html-inline-image-rules
|
|
|
- `(("file" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg")))
|
|
|
- ("http" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg")))
|
|
|
- ("https" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg"))))
|
|
|
+ `(("file" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg" ".webp")))
|
|
|
+ ("http" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg" ".webp")))
|
|
|
+ ("https" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg" ".webp"))))
|
|
|
"Rules characterizing image files that can be inlined into HTML.
|
|
|
A rule consists in an association whose key is the type of link
|
|
|
to consider, and value is a regexp that will be matched against
|
|
|
link's path."
|
|
|
:group 'org-export-html
|
|
|
- :version "24.4"
|
|
|
- :package-version '(Org . "8.0")
|
|
|
+ :package-version '(Org . "9.5")
|
|
|
:type '(alist :key-type (string :tag "Type")
|
|
|
:value-type (regexp :tag "Path")))
|
|
|
|