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
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 ...
2
votes
1answer
158 views

Bug: Code after bullet list isn't renedered correctly [duplicate]

Possible Duplicate: How to nest code within a list using markdown If there is a list immediately followed by a code block the code block is not recognized as code (Even though there is a ...
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 ...