For example see this comment:
https://kbin.social/m/haskell/t/511582/Defeating-Return-Type-Polymorphism#entry-comment-2765579
There are so many <span>
tags inserted into the code block that it has become completely unreadable.
Is this a known problem?
deleted by creator
I think Lemmy is correct here and the Mozilla docs only refer to the text content, not elements. It also mentions that < and > still have to be escaped to be displayed.
The HTML spec https://html.spec.whatwg.org/multipage/grouping-content.html#the-pre-element defines that the element contains „phrasing content“ which \ is part of.
It even explicitly mentions nesting \ inside .
You’re right, I only read the beginning of article, the Mozilla docs also mention the phrasing content later on the same page.
Guess it’s really on kbin then to fix this.
So, slight correction to my previous post (which I now deleted) thanks to @troplin.
It seems that phrasing content like \ elements are allowed inside \ elements according to the spec, so Lemmy is actually doing the right thing there. It’s on kbin to fix this, not Lemmy.
I commented on one of the closed issues about this on the kbin code repository, asking for the issue to be reopened. Hopefully it will so this gets fixed, I’m not sure though how visibility works if the issue is already closed. I’ll make a new one if it’s neither reopened nor replied to until next week, if no one else does first.
The issue here is that Lemmy is federating out it’s content with the pre blocks containing rendered code fit for some sort of code display plugin/CSS - which KBin doesn’t have.
It would ideally send out the blocks html encoded and would let downstream implementations like KBin or others figure out how to display it themselves. I don’t know how we would fix this.