Skip to content

Commit 71ae504

Browse files
author
Lionel Bijaoui
committed
fix: small bug with quotes
1 parent dcfde9f commit 71ae504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
} else if (/null/.test(match)) {
1919
cls = "null";
2020
}
21-
return "<span class="" + cls + "">" + match + "</span>";
21+
return "<span class=" + cls + ">" + match + "</span>";
2222
});
2323
}
2424
}

0 commit comments

Comments
 (0)