I just posted an answer on Stack Overflow where I wanted to have nested numbered lists, something like
1. Dog
1.1. German Shepherd
1.2. Belgian Shepherd
1.2.1. Malinois
1.2.2. Groenendael
1.2.3. Tervuren
2. Cat
2.1. Siberian
2.2. Siamese
As you can see the sublists are not indented, and also "Cat" should be number 2, at the same level as "Dog". I've also tried blockquotes, but still it doesn't work:
- Dog
1.1. German Shepherd
1.2. Belgian Shepherd
1.2.1. Malinois
1.2.2. Groenendael
1.2.3. Tervuren
- Cat
2.1. Siberian
2.2. Siamese
First part seems to be indented properly, but then numbering goes wrong again, and indentation too.
So, is there a way to write proper markdown for nested number lists?

3.,2.,4.will still be numbered as1.,2.,3.(by your browser when it encounters<ol><li>Dog</li><li>Cat</li><li>...</li></ol>). Escaping the dot, like by writing2\., avoids that Markdown recognizes2.as an item of a (new or existing) numbered list. Hence, writing2\. Catwould avoid the new list with1. Catas its first item, like in your example above.) – Arjan Mar 31 '11 at 15:10