« get me outta code hell

Merge branch 'url-special-chars' into data-steps - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/util/html.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-07-14 12:45:07 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-07-14 12:45:07 -0300
commitb34828921179b53434db4fa93a72dd52e5f72fa5 (patch)
tree94ee7fb4e49b06c683506c1566f1c4720a3cfbe5 /src/util/html.js
parent6f1d669e88cf0d92d73267291e2f70138e965c1f (diff)
parentd3315efaf0cfb481fa32a8ea1739431f32aa1a98 (diff)
Merge branch 'url-special-chars' into data-steps
Diffstat (limited to 'src/util/html.js')
-rw-r--r--src/util/html.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/util/html.js b/src/util/html.js
index f2456565..2468b8db 100644
--- a/src/util/html.js
+++ b/src/util/html.js
@@ -475,14 +475,6 @@ export class Attributes {
           throw new Error(`Attribute value for ${key} should be primitive or array, got ${typeof val}`);
       })
       .filter(([_key, _val, keep]) => keep)
-      .map(([key, val]) => {
-        switch (key) {
-          case 'href':
-            return [key, encodeURI(val)];
-          default:
-            return [key, val];
-        }
-      })
       .map(([key, val]) =>
         typeof val === 'boolean'
           ? `${key}`