How do I post text so that it is formatted as code?
What do I need to do so that my code shows up properly—not escaped or removed—when posted? And how to get the correct syntax highlighting?
|
How do I post text so that it is formatted as code? What do I need to do so that my code shows up properly—not escaped or removed—when posted? And how to get the correct syntax highlighting? |
||||
|
|
|
For
For blocks of code, to preserve newlines:
Code copy/pasted from an IDE is often already tabbed. When rendering, tabs are replaced with spaces.
Code within a blockquote or listIf your code appears inside a blockquote or a list, you must indent a further four spaces for every level of nesting. E.g. - Blockquote:
> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
> for(;;)
echo 'badger ';
Within a list:
- First bullet (is the deepest)
for(;;)
echo 'ow ';
- Second bullet
Syntax highlightingPrettify is used to add colour to the code, but only if the language can be uniquely determined given the tags of the question, or if manual hints have been provided in HTML comments, using:
You can also specify the syntax for all codeblocks in your post with the
See the full specification and list of languages hints. Note that:
If no language is defined then no highlighting occurs at all. But in the preview, or if multiple language tags define very different languages and no manual definition is used, a default highlighting is used in which Prettify makes a best guess. There is a delay before the preview text highlighting is applied after you stop editing your markdown source, of around 5 seconds. Using mobile devices
Backticks within backticks
|
|||||||||||||||||
|
|
Paste it in the edit field, select it and click the Code button (the one saying |
||||
|
|
|
I have written a small desktop application, originally intended for pasting code onto my website. Essentially, it removes the leftmost indent, without actually harming the indent of the code. (When I copy/paste stuff out of Visual Studio, it is sometimes indented 16 or 20 spaces already, and I want to have 0 spaces indent. So from that example, a "Stack Overflow friendly" function to remove the leftmost indent and then add 4 spaces could look like this (this is C# Code, and tbCode is a Multiline Textbox):
This may be a little bit inefficient, but since we are not using it on millions line of code, it performs good enough. |
|||||
|
|
If a block of text is indented (I think, 4 spaces), it will automatically be formatted as code. |
||||
|
|
|
To select vertically in Visual Studio, use the Alt key while dragging. This lets you drag around just the text you're interested in, minus the indent, so should make it a one-step copy/paste. [fixed to Alt, thanks Michael.] |
|||||
|
|
First off, it is important to always post a Short, Self Contained, Correct (Compilable), Example. Remove extraneous code and concentrate on the problem. Show enough code to explain the context but remove unrelated lines. Although whitespace is important for readability, consider trimming blank lines to make it more concise. Certainly a max of only 1 blank line between lines -- never more. After you have cut your code sample down to an appropriate size, you need to format it. The following works with Eclipse.
Instead of using |
||||
|
|