this post was submitted on 29 May 2025
13 points (100.0% liked)
dailygames
1530 readers
70 users here now
Community for daily games like Wordle, Jumblie, Connections etc.
Post your daily games and scores. Discover new games and discuss with others.
Find games
- The most comprehensive list of Wordle-like games and resources
- Lemmy-Thread featuring a lot of Wordle-style recommendations
- NYT Games Various puzzles including the original Wordle
- The Dles Curated collection of 200+ daily 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
- Be nice!
- Don't cheat!
founded 11 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Connections Puzzle #718 π©π©π©π© π¨π¨π¨π¨ π¦πͺπ¦π¦ π¦πͺπͺπ¦ πͺπ¦π¦π¦ πͺπ¦πͺπ¦
Funny you say that--I was convinced I got it right after 1 error too, and I had shuffled the last 8... Thought I must have imagined it...
Gotta add two spaces at the end of every line if you want it to display correctly.
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: