-11
votes
1answer
96 views

Code blocks are unreliable

First of all, having to go through your code and add four spaces to every line is a pain, (even though I can just do gg>G in vim, I shouldn't need to launch a separate program). The code button ...
4
votes
2answers
96 views

Keyboard shortcut to make something “code”

If I type in Hello and then highlight it and press ctrl+i it will change it to *hello* (thus making it look like this hello). Is there a ctrl+i or ctrl+b equivalent to make something code? I want to ...
1
vote
1answer
73 views

Backticks in comments don't work when you're adding a plural to the end [duplicate]

Possible Duplicate: What happened to comment formatting? In a comment, `Exception`s doesn't get turned into Exceptions, but remains as `Exception`s
13
votes
0answers
118 views

Can the code button in the format bar be made to work for code blocks in numbered lists

I ran into a problem formatting a code block in a numbered list. I notice that I am not the first one to run into this problem -- there are more than a dozen questions related to this topic. The ...
1
vote
2answers
106 views

corrupted `code` formatting after posting new question (on SO)

it happened to me few times lately that after submitting new question the formatting of inserted code was corrupted. I am 100% sure that it looked ok at the time I clicked Post Your Question button. ...
2
votes
1answer
149 views

Code is indented by 4 spaces but isn't interpreted as code [duplicate]

Possible Duplicate: Why is a code block not properly formatted when placed immediately after a list item? If you look at my post ( 3rd down ) on this stack overflow page, you'll see that my ...
2
votes
1answer
120 views

Code blocks inside lists and/or list items? [duplicate]

Possible Duplicate: How do I include a code block right after a list without it turning into a blockquote? How do I create a list with code blocks in between? Example: print in ruby puts ...
2
votes
3answers
116 views

How do I include a code block right after a list without it turning into a blockquote?

If I want to write this : >>> calendar = GoogleCalendar(user='blabla', password='blablabla') >>> calendar.myFunction() After a list, the >>> become a blockquote ... Here is the ...
1
vote
2answers
435 views

How do I format this source code?

I can't get it to look right! See my question. Compare 1: Compare 2: Compare 3:
3
votes
1answer
132 views

List entry followed by code block messes up the code section

Here's two examples (note that in first example, backticks also had no effect, for some reason): include/db.php: try { $attribs = array( PDO::ATTR_PERSISTENT ...
52
votes
5answers
2k views

Code block is not properly formatted when placed immediately after a list item

Consider the following piece of Markdown code: The is some regular text. >>> def factorial(n): ... return 1 if n < 2 else n * factorial(n - 1) ... * This is a list ...
103
votes
6answers
31k views

How do I format my code blocks?

How do I post text so that it is formatted as code? What do I need to do so that my code shows up properly—not escaped or removed—when posted? And how to get the correct syntax ...