I'm storing some notes with CommonMark and I noticed that this snippet seems to render differently on SO (echo is indented 7 spaces).
1. Print Windows folder path
echo %windir%
Here it is interpreted as a code block on http://spec.commonmark.org/dingus/:
And here it is on Stack Overflow:
If I indent echo by 8 spaces instead, it will now show as a code block on Stack Overflow:
But on http://spec.commonmark.org/dingus/ it now has a leading space (I've selected it to show):
Is this because SO isn't actually using the full CommonMark spec (yet?)?
Or is there a CommonMark setting to make it render the way SO does?
This is a little annoying because many of my notes are indeed text that could find their way into a question or answer somewhere on Stack Exchange. So I'm just hoping to figure out what's going on here.