my calendar event descriptions almost always have a bunch of html in them.
it seems like it is possible to render it like so, in org-gcal--update-entry:
;; Insert event description if present.
(when desc
(let ((beg (point)))
(insert (replace-regexp-in-string "^\*" "✱" desc))
(shr-render-region beg (point)))
(insert (if (string= "\n" (org-gcal--safe-substring desc -1)) "" "\n")))
link to the code:
|
;; Insert event description if present. |
this makes my events much easier to read.
perhaps this could be a customize option or something? (i don't know this library's code, so i'm unsure if this could cause any issues elsewhere.)
my calendar event descriptions almost always have a bunch of html in them.
it seems like it is possible to render it like so, in
org-gcal--update-entry:link to the code:
org-gcal.el/org-gcal.el
Line 1731 in 9f9d93e
this makes my events much easier to read.
perhaps this could be a customize option or something? (i don't know this library's code, so i'm unsure if this could cause any issues elsewhere.)