We've come to rename Markdown to Letdown in the C++ chat room because it lets you down so often. I've now just found a pattern.

It seems markdown fails for multi-line messages. That is, this

Letdown can't cope with multi-line comments.
Let's see code?

fails to display code marked as code, while this works

But code works.

Now, I think it would be Ok if you said chat messages shouldn't be multi-line. (Although I'd be a bit annoyed, because I like them.) But if so, please don't render them as multi-line (as is the case with comments), so we aren't tempted to use them.

share|improve this question
@balhpha: What? – sbi Nov 13 '10 at 21:14
Assuming "balhpha" is me -- what what? – balpha Nov 14 '10 at 5:50
@balpha: (Sorry for misspelling your nick.) You changed this from "bug" to "feature-request". I still consider this a bug, though. – sbi Nov 14 '10 at 11:13
2  
@Jeff: This sucks big time, no matter which way I look at this. – sbi Nov 14 '10 at 11:14
4  
@Jeff: I just asked had same question myself… could it be documented in the chat formatting help? – Sidnicious Nov 20 '11 at 19:01
3  
Should there be a userscript that fixes this on StackApps? – Call me V Jun 15 '12 at 22:24
@aking: What? How could a userscript "fix" the formatting built into the chat? – sbi Jun 17 '12 at 21:21
4  
If you injected custom javascript in to the browser and parsed the dom to replace this with <i>this</i> for example. I know people that inject custom js or css to modify the behaviour or appearance of many sites. – Call me V Jun 17 '12 at 21:52

2 Answers

up vote 4 down vote accepted

It is basically assumed that if you have something that is multi-line, you're either pasting a block of text and submitting it, or you're posting a block of code and the whole thing is going to be fixed-font/code.

Markdown is only processed for single-line messages, unless the entire thing is code.

Chat reference from Marc

share|improve this answer
10  
That would be fine if it was obvious. Coming from SO, questions and answers fully support multi-line and comments don't support it at all. The chat seems to support multi-line messages, but silently fails to apply markdown. That's really the worst combination. – sbi Nov 13 '10 at 17:09
@sbi, Chat use markdown-mini. It has the same limited markdown support that comments have. – Rebecca Chernoff Nov 13 '10 at 17:15
9  
I did get that. Still, the chat does allow multi-line messages, which comments forbid. That's an important difference. It took us days to find out why it keeps failing unexpectedly in the chat. Also, I believe if I put multi-line into comments, while the line breaks get filtered, code stays code. (Yep, it does. This comment uses this.) – sbi Nov 13 '10 at 18:23
@sbi, I'm just passing along what Marc said. |: – Rebecca Chernoff Nov 13 '10 at 18:33
6  
I really appreciate the effort, but it sucks nonetheless. :) – sbi Nov 13 '10 at 19:47
1  
So why not make it so that this 'block text' assumption is only made by chat posts that exceed the line length that a regular chat post should reasonably be (3-4 lines)? – HodofHod Jun 14 '12 at 4:18
So why don't they just fix it? – Lance Roberts Jan 20 at 9:21

I found a cool purpose for this, you can make ASCII art on multiple lines that ignores formatting, Here is a nice example,

.*..*.  /),/)   .*..*.  
"-.-"  ( ';' )  "-.-"  
.*..*. c(..c)   .*..*.  
"-.-"    OO     "-.-"

So with this feature, you can make bunnies and unicorns, ignoring formatting options.
Happy chatting!

Edit:
As requested, a unicorn.

 

\              M.   .M                                      
 \\         MM   M ~~~.M                                     
   \\\.    MM M        ~~. __                    .~~~~~    
     \\\``` M M         ..MMM                    M       M.  
       M.MMM   M . M         M         ----.   .M         M  
     ~.-   .M  M MM .MM  . MMM    MM.        M.M . M   M  M  
       MM  MM   MM .M .   M M MM              M .M.  M.  M   
               M    .MMM                       M     M  M.   
         0    .MM    MM. ,~~~                  ..   M   M    
             .M M       MM MM                  .M      .M.MM 
         M   M  M         MM                   .M    MM    M 
          \__  .M          M         M         .M.     .MM   
                M.                    .              M       
               MM       M             M              M       
              M  M     M          MMM  MM            M       
             M .M    MM -----.           ----- M  M        
            M M  MM                         M   M   M        
            MM   M                             .M  M         
            MMM  M                         M   M   M         
             M MM MM  .                   M   M    M         
              M M.  MM.0                   M  M   M          
               MMM.  .MM                   M. .M  MM         
                 . . 00                  M  MMM. M         
                                          00 M 00 

         

share|improve this answer
It's of course important to be able to create unformatted multi-line messages in a programmer's chat. However, that doesn't mean every multi-line message should be unformatted. – sbi Jun 17 '12 at 17:48
True, but since it was status-bydesign, I thought it would be important to highlight a purpose for the un-formated multi-line message. – mateo_salta Jun 17 '12 at 17:53
I somewhat doubt that the main incentive for this "feature" was unicorns. :) I think, as Rebecca suggested, pasting code is a bit more likely to be the use case the creators had in mind when they designed this. Unfortunately they forgot the other use cases. – sbi Jun 17 '12 at 21:20
if it really is for formatting code and not performance(it's easier to get performance when if line longer than X, disregard rules) shouldn't there be a toggle button? – Call me V Jun 28 '12 at 21:38

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged