Tagged Questions
1
vote
0answers
21 views
Text alignment in the code code view does not match text alignment in the edit box
In many questions, we see the source code with wrong indentation. On of the reasons for it, if the copy/pasted code contains tabs, the assumed tab size in the edit box is different from the assumed ...
0
votes
1answer
81 views
Bug in code dump rejector
The system rejects code dumps without context from low-rep users by comparing the ratio of context (non-code-formatted text) to code (text which is wrapped in <pre>). (See also this feature ...
1
vote
0answers
56 views
Got single line after pasting the code! [duplicate]
Possible Duplicate:
Prettified code copied in Internet Explorer pastes without line breaks
Sometimes, when I want to test some code snippet, I copy it as it is and I got the entire code in ...
2
votes
1answer
116 views
Code formatting bug for Bash scripts with array size expression
The bash script line:
for ((i = 0 ; i < ${#v1parts[@]} ; i++ )); do
doesn't format properly. The # is incorrectly interpreted as the beginning of a comment.
0
votes
1answer
161 views
Single whiteline gets doubled inside code block inside list [duplicate]
Possible Duplicate:
Bug in Markdown formatter
If you have a whiteline inside a code block, which is inside a list, it gets doubled. It doesn't matter whether you put eight spaces in that ...
10
votes
1answer
241 views
Bug: code blocks after numbered or bulleted lists completely disappear
This and related bugs have repeatedly been reported here, here, here and here, which is four times in four months. And there are many many more of the same reports, unfortunately.
My issue? Almost ...
0
votes
0answers
52 views
The user, links, etc are within the code block? [duplicate]
Possible Duplicate:
Serverfault cut off/truncated on long post?
On the following answer, the user, links and other information is within the last code block:
...
1
vote
2answers
82 views
Is the \ escaping of a char in the formatter a bug or just difficult to get right for every language?
In Delphi the \ does not escape a string ending, in Delphi if you want a ' you type:
StringVariable := 'Foo'' bar'; // comments
And it works as expected, but in an answer on StackOverflow I've ...