summaryrefslogtreecommitdiffstats
path: root/emacsconf-stream.el
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2024-10-31 12:45:56 -0400
committerSacha Chua <sacha@sachachua.com>2024-10-31 12:45:56 -0400
commit8add3886e029cc737c27a54b7f1fd91a80d30d14 (patch)
treea46b5c795e261f8c3958d9c9743ad1e5fbd0d690 /emacsconf-stream.el
parentfd5eb66a704432717481d455e109af526d33da5e (diff)
downloademacsconf-el-8add3886e029cc737c27a54b7f1fd91a80d30d14.tar.xz
emacsconf-el-8add3886e029cc737c27a54b7f1fd91a80d30d14.zip
don't encode & in SVGs
Diffstat (limited to 'emacsconf-stream.el')
-rw-r--r--emacsconf-stream.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacsconf-stream.el b/emacsconf-stream.el
index 211749b..d947a12 100644
--- a/emacsconf-stream.el
+++ b/emacsconf-stream.el
@@ -72,7 +72,7 @@ If the element doesn't have a tspan child, use the element itself."
(when node
(dom-set-attribute node 'style "visibility: hidden")
(dom-set-attribute (dom-child-by-tag node 'tspan) 'style "fill: none; stroke: none")))
- (setq text (svg--encode-text text))
+ ;; (setq text (svg--encode-text text))
(let ((node (or (dom-child-by-tag
(car (dom-by-id dom id))
'tspan)