diff options
author | Arun Isaac | 2021-06-10 00:20:26 +0530 |
---|---|---|
committer | Arun Isaac | 2021-06-10 00:36:26 +0530 |
commit | 7f64860411c49f12ef96aa7f5066f3d342ec86a4 (patch) | |
tree | d720df6974b0e70d4e468f580c6ae66f5566f2eb /build-aux | |
parent | 320086ae96a21dc6e1ce918778ae60716a34b928 (diff) | |
download | ccwl-7f64860411c49f12ef96aa7f5066f3d342ec86a4.tar.gz ccwl-7f64860411c49f12ef96aa7f5066f3d342ec86a4.tar.lz ccwl-7f64860411c49f12ef96aa7f5066f3d342ec86a4.zip |
README: Add continuous integration badges.
* README.org (ci-badge): New macro.
Add continuous integration badges.
* build-aux/build-home-page.el (org-html--svg-image): Override
org-html--svg-image to export svg using an img tag instead of an
object tag.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/build-home-page.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build-aux/build-home-page.el b/build-aux/build-home-page.el index 51b1d03..e696634 100644 --- a/build-aux/build-home-page.el +++ b/build-aux/build-home-page.el @@ -33,5 +33,19 @@ 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")) |