Fix kbin Code Blocks

Fix for kbin code blocks federated from Lemmy. Strips out the weird <span> tags on each line.

作者
Pamasich
日安装量
0
总安装量
10
评分
0 0 0
版本
2.0.1
创建于
2023-11-14
更新于
2024-04-05
大小
2.7 KB
许可证
MIT
适用于

/kbin currently has an issue with code blocks federated from Lemmy.

someCode {

}

When federating the above Lemmy code block, Lemmy appears to add additional <span> tags for syntax highlighting to the federated block. This is legal by HTML's specification, but kbin doesn't currently handle it correctly and just displays the tags in plain text, hurting the readability of code blocks.

As such, the above code block displays on kbin like this:

<span style="color=#323232">someCode {
</span><span style="color=#323232">
</span><span style="color=#323232">}
</span>

This userscript strips out those extra tags, reproducing the first code block instead.


This is a standalone release of the fix which is also included in KES (Kbin Enhancement Suite).

Please report issues and suggestions there.