1
0
Fork 0

[oni-org] Export “” as escaped html entities

This commit is contained in:
Tom Willemse 2023-07-06 16:50:10 -07:00
parent de5e5ff047
commit 77b629bc53

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org> ;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local ;; Keywords: local
;; Version: 2023.0621.002708 ;; Version: 2023.0628.233444
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-bullets org-edna diminish all-the-icons olivetti form-feed org-pretty-table) ;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-bullets org-edna diminish all-the-icons olivetti form-feed org-pretty-table)
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
@ -772,7 +772,14 @@ This is an around advice for org-html--svg-image as FUN."
(buffer-string))) (buffer-string)))
(funcall fun source attributes info))) (funcall fun source attributes info)))
(advice-add 'org-html--svg-image :around #'oni-org-html-svg-image-embed) (with-eval-after-load 'ox-hmtl
(advice-add 'org-html--format-image :around #'oni-org-html-svg-image-embed)
;; These two I've added because when I try to upload text with either of these
;; characters to Tekuti I just end up with sending ? for each. This is not an
;; issue with org-mode, the generated HTML correctly contains these characters
;; verbatim.
(add-to-list 'org-html-special-string-regexps (cons (rx "") "&ldquo;"))
(add-to-list 'org-html-special-string-regexps (cons (rx "") "&rdquo;")))
;;; Pomodoro ;;; Pomodoro