Compare commits

..

No commits in common. "0dd22b9f32872dbb5fea981db4a5d3c3aab1ec2c" and "b8dac52d98aa18467131a1ee8715aae1c20dd62c" have entirely different histories.

3 changed files with 18 additions and 10 deletions

View file

@ -332,4 +332,12 @@ document.querySelectorAll("a").forEach(function (a) {
rel: "noreferrer",
});
});
document.querySelectorAll("img").forEach(function (img) {
Object.assign(img, {
src: img.src.replace(
/^https:[/][/]twemoji[.]maxcdn[.]com[/]v[/][0-9.]+/,
"https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/"
),
});
});
</script>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long