I've seen other questions regarding the same, but in this case I think it is a little different.

I know the markdown handles tabs correctly (when generating the HTML code), but that's not what I'm requesting.

I think it would be good to automatically convert TABs to spaces when storing the codes of the answer/question. I mean, changing the original text.

Although you think nobody mixes tabs with spaces, well, lots of people copy some piece of code from a website, or from their IDE, and do some edits (maybe looking for a correct indentation here on StackOverflow), and then it happens.

The think about it is that it makes editing much harder. You have to copy the code to a text editor, replace TABs by spaces, and then paste the code on the site again and indent it correctly.

link|improve this question

70% accept rate
3  
The real problem, of course, is that those people are using tabs instead of spaces in their IDEs. – The Establishment May 12 '11 at 3:39
1  
Whenever I install a new editor/IDE, the first first two things I do are: Configure the compiler, in case it is a text editor, and turn on the option to automatically convert from TABs to Spaces :) You don't need how bad it can be until you start programming in Python :/ – Oscar Mederos May 12 '11 at 3:47
3  
Really? You really have to paste it into a text editor and convert tabs to spaces first? Just today I worked with several code samples of my own and others that had mixed tabs and spaces, and somehow I managed. – NickC May 12 '11 at 5:36
1  
Also, TAB is not an acronym. – NickC May 12 '11 at 5:38
1  
@Renesis Yes, I have to do that. Also, TAB is not an acronym. So what? – Oscar Mederos May 12 '11 at 5:49
2  
The feature request aside, if Tabs don't work as expected, then a recent fix failed. Leaving comments for balpha there might be helpful. Works for me though. – Arjan May 12 '11 at 6:10
1  
I like Tabs, and turtles. – H.B. May 12 '11 at 6:41
feedback

3 Answers

I'd only like this if it's done while pasting, hence using JavaScript.

To me, the main advantage would then be that the preview and the final result, which convert tabs to spaces based on a width of 4, will match the (pasted) text in the edit box.

(Hardly anyone will know how to type tabs in the editor anyhow, as most browsers will change the focus to another input while pressing Tab. If done in JavaScript then it might not work for some users, or on some devices, tabs will be left in some posts then.)

link|improve this answer
feedback

I'm against this on principle - when I go back to edit something I've posted, I expect to see the text I entered, as I entered it. The Markdown renderer, and then the renderer in the users' browsers will transform it into something very different, but I like to know that what I typed is still there, behind the scenes, somewhere.

That said, whitespace is really small potatoes. And I don't use tabs anyway, so... y'know... It wouldn't effect me, screw everyone who does.

...If there's actually some tangible benefit to it. You're talking about re-indenting someone else's code - this is actually harder when the original text is indented using spaces, since you can just tell your text editor to expand tabs to n spaces, where n is whatever your preferred indentation might be. It's... kinda the only advantage tabs have going for them.

Of course, if you really want to make your life easy, you use a pretty-print utility.

link|improve this answer
I agree with you about seeing the text as the OP wrote it originally, but the thing is that this problem usually occurs with new users, and not only new, but also users that probably won't visit the site again. Registered users interested on asking/answering interesting questions/answers usually do not mix tabs with spaces in their code, or if they do, at least they are familiar with the markdown renderer, so questions/answers won't have to be edited that much by other users. – Oscar Mederos May 12 '11 at 5:02
That is how I see it. We have to compare both affected sides. The post owner or the community. If they don't want the code to be edited and modified, then they could put a minimum of interest and at least see in the preview how they question looks like before submitting it. Otherwise it should be modified so people can easily read and understand the question, and TABs and Spaces at the same time make this process harder :/ – Oscar Mederos May 12 '11 at 5:04
feedback

I am against this because you propose that they should edit what was entered, not martial what they display.

I am against anything that causes them to change what I submitted, given the way things are structured around here right now. I don't mind edits, I don't mind changing how you display it, but if I key it in in a certain way, that's what I expect to get entered.

Consider it a form of anti-censorship.

Just my $0.05 of course

link|improve this answer
1  
You're just daring me to edit that to $0.02 aren't you? ಠ_ಠ – Bill the Lizard May 12 '11 at 12:14
1  
@Bill it's because of inflation (of my ego most likely) ... – jcolebrand May 12 '11 at 14:17
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged