about summary refs log tree commit diff
path: root/build-aux
diff options
context:
space:
mode:
authorArun Isaac2021-06-10 17:16:34 +0530
committerArun Isaac2021-06-10 17:16:34 +0530
commit6bc13f2df1395fe6b5c197dca8b24a959d02e5c1 (patch)
tree5fd4670edd271ef19b61c0f9d90d5a6f16b3bae8 /build-aux
parent4ce35159d8ead6022a8f8945b8b1d3659b0d5fd6 (diff)
downloadccwl-6bc13f2df1395fe6b5c197dca8b24a959d02e5c1.tar.gz
ccwl-6bc13f2df1395fe6b5c197dca8b24a959d02e5c1.tar.lz
ccwl-6bc13f2df1395fe6b5c197dca8b24a959d02e5c1.zip
build-aux: Do not override org-html--svg-image.
SVG image export works correctly out of the box in org.

* build-aux/build-home-page.el (org-html--svg-image): Delete function.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/build-home-page.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/build-aux/build-home-page.el b/build-aux/build-home-page.el
index e696634..51b1d03 100644
--- a/build-aux/build-home-page.el
+++ b/build-aux/build-home-page.el
@@ -33,19 +33,5 @@
       org-html-head-include-scripts nil
       org-html-postamble nil)
 
-;; Override org-html--svg-image to export svg using an img tag instead
-;; of an object tag.
-(defun org-html--svg-image (source attributes info)
-  "Return \"object\" embedding svg file SOURCE with given ATTRIBUTES.
-INFO is a plist used as a communication channel."
-  (let ((attrs (org-html--make-attribute-string
-                (org-combine-plists
-                 ;; Remove fallback attribute, which is not meant to
-                 ;; appear directly in the attributes string, and
-                 ;; provide a default class if none is set.
-                 '(:class "org-svg") attributes '(:fallback nil)))))
-    (org-html-close-tag
-     "img" (format "src=\"%s\" %s" source attrs) info)))
-
 (with-current-buffer (find-file "README.org")
   (org-export-to-file 'html "website/index.html"))