More Than Four Dots in a Row

Over in the “And Then The Murders Began” thread, I attempted to correct a user’s Morse code for H (four dots), but couldn’t post more than three dots, no matter how many I entered. Is this a feature of Discourse?

3 Likes

……

2 Likes

....

(It looks like it won’t allow mixing regular periods with html entities, but using just the html entities alone ( . ) gets you there.)

3 Likes

Interesting. Looks like it might be a markdown feature that I was previously unaware of. Looks like it can be worked around by using a backslash prior to a dot to prevent the conversion to ellipsis.

\.\.\.\.\.\ becomes .....

5 Likes

Here’s a setting that applies to titles:

image

I don’t think it applies to content. @messana’s explanation is likely correct.

3 Likes

I believe I’ve found an additional workaround:

23 Likes

I double checked. Whatever it is, it’s not in the original Markdown.

Discourse likely uses something that complies with CommonMark. The most recent thing I can find suggests Discourse probably uses markdown-js with some custom bits. It might be something we could consider a Discourse bug.

I’m not in a position to test the vanilla markdown-js at the moment so I’m not sure that’s where the issue is. (It’s not outrageous to mock something up but most of my JS these days doesn’t involve the DOM and it could take me literally hours to put together an HTML/JS file that would let us test since I don’t have any working DOM code handy.)

For the time being, for something long like a Morse code segment, I’d suggest using backticks around the entire Morse code segment as a workaround. It’s shorter than \.\.\.\.ing your way through the whole thing. :smiley:

Workaround example:

What you type:

```.‍.‍.‍.```

What you get:
....

Note: Copying my text directly may have odd consequences. There are some invisible characters in the mix to keep Discourse from turning the four periods into a three period ellipsis. I suppose you could use invisible characters (‍) yourself but if you’re not keen on learning HTML entities, the backticks are probably an easier solution. Plus that would make the workaround even longer.

Other software

I use Haroopad extensively in my own work because it has a bunch of neat features. It’s a cranky mess and likes to crash in part because of the neat features. The different libraries they put together weren’t meant to work with each other. Since they do “smart” things like auto-ellipsing and smart quoting, I figured I’d check to see how they handled … elongated ellipses.

Haroopad takes a less destructive approach but it can still make things look a bit weird in outside cases (like the ones we’re talking about here :joy_cat:).

Haroopad example

Note: This is a screenshot. Inside the post preview, that’s not obvious.
52 AM

8 Likes

Thanks for the very detailed and useful reply, and for allowing me to complete my life list of “characters on my keyboard that I have used”. (I had to look for it.)

In human terms, can the triple backtick be roughly translated as “display the text exactly as I type it”? (“Dammit” implied)

Hmm. Let’s see…

* Oh hey, look, I can put an asterisk at the start of a line without it changing to a bullet point! Bliss is it in this dawn to be alive!

8 Likes

In a sense, yes. I forget what the exact terminology is but it’s meant for typing in blocks of code (to share with others) that might otherwise have parts that would be misinterpreted as formatting. The downside is that it puts a grey background on things.

To make it even shorter you could put four spaces at the beginning of the line but then it puts things in a scrolling box like this which can be a little irritating from a practical perspective.
The empire never ended but this line does. Eventually.

The backslash escape @messana mentioned is better for most things. Including putting asterisks at the beginning of a line.

Typing this:
\* No grey background :‍D

Produces:
* No grey background. :smiley:

It’s just kind of obnoxious if you have a long string like Morse code since you’d be typing \.\.\.\. every time you needed four dots.

7 Likes

I believe it’s usually referred to as “preformatted text”, or in some cases just the “code” option.

5 Likes

Yeah. Preformatted text and codeblocks (again, not sure this is the right term) are sometimes different things with subtle differences in how they behave. In Discourse, it’s a bit confusing. Code and Pre seem to work exactly like each other except that Code has a grey background and Pre always forces the start of a new line.

The backticks actually ignore the formatting. The “four space” lines add a scrolling box.

I’m sure there’s a purpose to all this but the only parts that make any sense to me are the backticks and the “four space” lines.

Example text for the below: **looks** *like*

<pre> looks like:

looks like

<code> looks like: looks like

Backticks look like: **looks** *like*

Four-spaced lines look like:

**looks** *like*
10 Likes

This appears to be the interpreter that Discourse is using: https://markdown-it.github.io/

The ellipses appear to be related to the typographer option, which you can see in the demo linked above.

It does look like I can toggle that:

image

I’m willing to entertain a conversation about disabling this setting, but the case will probably have to be stronger than the desire to simply enter morse code, given the workarounds shared above.

5 Likes

What if we wanted to play classic games?

(sorry, it’s just that this is what always pops to mind every time I see the title of this topic pop to the top…)

5 Likes

Great, now I want a bot that lets us play connect four.

6 Likes

Man, I have too much other stuff to think about. Now I have to think about how to build a connect four bot.

5 Likes

Or people could just learn to write messages without the numbers 4, 5 and 6 or the letter “h”.

Tink of it as a callenge!

5 Likes

Considering how many things it would change, I’d definitely agree with just leaving it as-is and letting people do workarounds for Morse code on the rare occasion they want it. xD

4 Likes

image

11 Likes

What have I wrought? :cold_sweat:

:anguished:It’s not about the Morse code. :cry: It was never about the Morse code. :sob:

Well, a little. The Morse issue was just the trigger that got me thinking about various formatting problems I’ve had in the past, such as inputting a whole line of periods or something like that. I appreciate all the responses. I’m sure that with your and @messana’s advice I can face Discourse alone. I feel strong and confident.

Seriously, thanks everyone.

6 Likes

… … … … … …

2 Likes