I was wondering if there is an easy way to indent the code in Stack Overflow. Whenever I paste in code, all the code loses its indentation; what I have been doing is manually indenting every line with the space button. Is there a quicker way to do all of this?

share|improve this question
3  
Highlight it and hit the "code" button. This belongs on meta. – BlueRaja May 8 '11 at 22:49
You could always make a short program in your language of choice to accept text and replace all tabs with four spaces, but that might be a bit overkill. – Maxpm May 8 '11 at 22:50
Hardly seems worth moving it - use the "code" button and move on. – duffymo May 8 '11 at 22:51

migrated from stackoverflow.com May 8 '11 at 22:52

2 Answers

To properly format code you should indent your code in the markdown source, either by a tab character or by 4 spaces.

There is handy button on the toolbar which can do this automaticlaly for you, simply select the code section of your question and press this button:

enter image description here

share|improve this answer

It would be nice if SO could automatically indent new lines to the same level as the previous line, like most text editors and IDEs do. This would make typing up answers that include code a lot easier.

share|improve this answer
This feature has been suggested here: meta.stackoverflow.com/questions/146236/… – Anderson Green Feb 5 at 23:57

You must log in to answer this question.