What is the best way to copy large amounts of code into Stack Overflow?
For up to 10 lines, prepending 4 spaces to each line is ok.
For 50 or 100 lines it become a headache.
For more, this is probably not the correct way to do it.
What do you think?
|
What is the best way to copy large amounts of code into Stack Overflow? For up to 10 lines, prepending 4 spaces to each line is ok. For 50 or 100 lines it become a headache. For more, this is probably not the correct way to do it. What do you think? |
||||
|
|
|
The best way in my opinion is the "It's All Text!" plugin for firefox.
That way I can use gvim and get all the The main drawback is the loss of the WYSIWYG stuff. |
|||
|
|
|
I you would like to supplement your shortened example code, you can use a free service like PasteBin to put your code and link to it in your answer. |
|||
|
|
|
I hope you're not actually writing 50-100 lines of code in the Markdown editor. Especially if you're using a language where indentation matters. When formatting code snippets for SO, I use an editor with indentation settings set at 2 spaces. This keeps lines short. And also makes it easy to indent everything by four spaces when I'm done... |
|||
|
|
|
Don't post hundreds of lines of code. Don't even post fifty. Abstract you problem down to a quantity that can be understood in short order: that is find the minium piece of source that will reproduce the problem. Yes, this is some work, but
And if you are, somehow, posting a long code for a good reason, select it a hit to |
|||
|
|
Select the snippet and hit Ctrl+K or click the code button on the tool bar. Or wrap the section with Also, I agree with the sentiment that if you have a lot of code, you're likely doing something wrong. However, I disagree on what makes for a lot of code. 20 lines might not be very much. If we're going to use lines for the metric, then 40 to 60 could still be reasonable. |
|||||||
|
|
Joel is right - you can hit Ctrl-K to indent a block of code so long as it's not indented already. If it's already indented, there's no way of indenting it another 4 spaces - it will be outdented instead. Personally I'd like to see separate indent and outdent shortcut keys (probably keeping Ctrl-K with its current behaviour to avoid confusing people too much). As it is, I suspect either a greasemonkey script or manipulating the code elsewhere is the best way forward :( |
|||||
|
|
If you've got more than about 10 lines of code, your question is almost certainly too broad, certainly if you've got more than 20 lines of code. |
|||||||||
|