diff options
author | Sacha Chua <sacha@sachachua.com> | 2024-10-31 12:45:56 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2024-10-31 12:45:56 -0400 |
commit | 8add3886e029cc737c27a54b7f1fd91a80d30d14 (patch) | |
tree | a46b5c795e261f8c3958d9c9743ad1e5fbd0d690 /emacsconf-stream.el | |
parent | fd5eb66a704432717481d455e109af526d33da5e (diff) | |
download | emacsconf-el-8add3886e029cc737c27a54b7f1fd91a80d30d14.tar.xz emacsconf-el-8add3886e029cc737c27a54b7f1fd91a80d30d14.zip |
don't encode & in SVGs
Diffstat (limited to 'emacsconf-stream.el')
-rw-r--r-- | emacsconf-stream.el | 2 |
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) |