We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2655556 commit c933bcfCopy full SHA for c933bcf
javascripts/fill.js
@@ -19,7 +19,7 @@ function normalize(s) {
19
return s
20
.replaceAll(
21
/[^a-zA-Z0-9\x21\$\x26\x27\(\)\*\+\x2c\x2d\.\/\x3a\x3b\x3d\?\x40_]/g,
22
- "-",
+ "-"
23
)
24
.replaceAll(/\x2d+/g, "-");
25
}
@@ -31,7 +31,7 @@ async function init(path) {
31
};
32
document.getElementById("plaintext").oninput = function () {
33
document.getElementById("minified").href = minify(
34
- document.getElementById("plaintext").value,
+ document.getElementById("plaintext").value
35
);
36
37
var content = [];
0 commit comments