13
Connections #718 2025-05-29
(lemmy.zip)
Community for daily games like Wordle, Jumblie, Connections etc.
Post your daily games and scores. Discover new games and discuss with others.
Find games
Share your results
Itβs useful to wrap your results in a markdown codeblock to preserve the layout. Put three backticks ```
before and after your result to create a codeblock.
π¨π¨β¬β¬β¬
π¨π©β¬β¬β¬
π©π©π¨π¨β¬
π©π©π©π©π©
Spoilers
Please put possible spoilers in spoiler tags
visible spoiler title
hidden content
Rules
Not for me
Here's what it looks like from the default web interface.
Jerboa, the first-party Android app, shows the same. Not sure which app you're using, but it displays markdown incorrectly. Out of interest, how does it handle ~subscript~ and
Spoilers
like this?
I'm using Arctic on iOS. I can't remember offhand which md library it uses but will check if it's been tweaked. I guess the real fix should be with the connections site in what they copy when you click 'share'.
Edit: of course that makes no sense, or it would be broken for everyone. Guess it's the iOS clipboard or app mangling what's copied. It's still early here :/
Subscript and spoilers:
Ah interesting.
Unfortunately yeah there's a lot of inconsistency with how different Lemmy clients display markdown. Even on the first-party platforms, ^multiple words of superscript^ or ~multiple words of subscript~ works some (Jerboa) but not others (lemmy-ui web interface).
The problem with this specifically though is with neither the Connections site nor with any of the Lemmy clients...it's with the interplay between Connections and the basic markdown specification. The markdown spec very specifically allows you to break one paragraph down into multiple lines, so that you can write like I am right now, and keep individual lines small while having it all display as a single paragraph. If your client is showing this as separate lines, it is misapplying the markdown spec.
If you want a new line in markdown, you can add a blank line in between (like I did just before this sentence), to create a whole new paragraph.
Or you can end your line with two spaces (like I did the line before this)
or with a backslash, to escape the newline and tell the markdown parser "treat this newline as an actual newline". Both the double space and the backslash methods insert a "line break".
Here's how this comment should display (apart from the superscript and subscript parts):
And how its script looks: