this post was submitted on 29 May 2025
13 points (100.0% liked)

dailygames

1530 readers
68 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

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 titlehidden content

Rules

founded 11 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Mothra@mander.xyz 4 points 3 days ago (1 children)

Connections
Puzzle #718
🟨🟨🟨🟨
🟦🟦🟦🟦
πŸŸͺ🟩πŸŸͺ🟩
πŸŸͺ🟩🟩🟩
🟩πŸŸͺ🟩🟩
πŸŸͺ🟩πŸŸͺ🟩

It wouldn't be the first time it rejects a correct answer to me.

Today it was pretty obvious though since there was only green and purple left. I got the correct answer on my second attempt, but it didn't take it. I had three of the four words identified and only changed one for the four attempts, yet you can see it registered two and two on my first error. I think it may have to do with shuffling the words, that probably triggers a bug or something.

[–] dave@feddit.uk 3 points 3 days ago (1 children)

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...

[–] Zagorath@aussie.zone 2 points 3 days ago (1 children)

Gotta add two spaces at the end of every line if you want it to display correctly.

[–] dave@feddit.uk 1 points 3 days ago (1 children)
[–] Zagorath@aussie.zone 1 points 2 days ago (1 children)

Here's what it looks like from the default web interface.

Screenshot of Dave's first comment, showing all the boxes on one line.

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

Spoilerslike this

?

[–] dave@feddit.uk 2 points 2 days ago* (last edited 2 days ago) (1 children)

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:

md

[–] Zagorath@aussie.zone 1 points 1 day ago

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: