Right now Lemmy is unusable for writing code that contains less than/greater than signs because Lemmy’s sanitizer treats that as potentially malicious HTML code.

Here’s an example:

if(x < y)
{
/* ... */
}

The listing becomes littered with < gibberish.

  • Tiff
    link
    fedilink
    English
    231 year ago

    Don’t forget & in community names and sidebars.

    Constantly getting trolled by &

  • @TheYear2525
    link
    English
    21
    edit-2
    1 year ago

    What’re you talking about?

  • ඞmir
    link
    fedilink
    English
    121 year ago

    It actually looks perfectly fine on Sync for Lemmy so I assume this is only a front-end problem. There are alternative front-ends that you could try.

  • @[email protected]
    link
    fedilink
    English
    6
    edit-2
    1 year ago

    Yeah I think this was hastily done to prevent the XSS injection attacks that were happening IIRC. They implemented encoding for content, but looks like they never got around to fully decoding it.

    Issue could’ve been avoided by just restricting the encoding to when the user types content in (and before database insertion), and decoding when showing the content in the UI.