As per Jeff's suggestion here in the comments.

You can use this question as a formatting sandbox (if you can edit Community Wiki questions) and you can post answers if you want to test out formatting there as well.

Beware that since the changes to syntax highlighting in December 2010, and the inline hints added March 2011, no syntax highlighting is applied unless the question's tags or an inline hint enable it. So, to test highlighting here in the sandbox:

  1. Set some language tags to this question:

    • See the explanation and the list of languages.

    • Adding clashing tags, such as both and , enforces a fallback to default, which is different from "no highlighting". (These tags are currently set on this question.)

  2. Or: on the start of a line, specify a language inline using <!-- language: lang --> hints, and indent the code 4 spaces as usual:

    <!-- language: lang-html -->
    
        While not hinted otherwise: <html> source <b>goes</b> "here".
    
    <!-- language: lang-js -->
    
        var a = 3;
        while (not (a > 0)) {
            alert("JavaScript code <b>goes</b> here.");
        }
    
  3. Or:

    • Save your post.

    • Use something like Firebug (Firefox), Web Inspector (Safari, Chrome) or Developer Tools (Internet Explorer 8) to edit the resulting HTML.

    • Find the <pre> element and add the attribute class="prettyprint", or change it into something more specific, like class="lang-vb prettyprint".

    • Run the following in the location bar: javascript:prettyPrint();

share|improve this question
5  
1 ` 1` characters – agf Oct 2 '11 at 0:43
7  
Please convert me to a comment! – Michael Mrozek Nov 23 '11 at 19:56
2  
@Michael Mrozek: ok – BoltClock's a Unicorn Nov 23 '11 at 19:57
2  
This comment formatting looks a lot `like` this. – Paul Martel Jan 10 '12 at 22:48
15  
This so should be a part of every browser's stress test. – C. Ross Jan 12 '12 at 4:26
1  
1  
36  
edit edit edIT FAQ Faq fAq Stack Overflow Stack Overflow [meta] Stack Overflow Stack Overflow Meta Stack Overflow Science Fiction & Fantasy Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing‌​Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[‌​sqa.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[s‌​qa.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[sq‌​a.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[sqa‌​.se]Software Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & TestingSoftware Quality Assurance & Testing[sqa.‌​se]Software Quality Assurance & TestingSoftware Quality Assurance & Testing – lunboks Jan 26 '12 at 21:52
2  
To faq or not to faq – animuson Feb 3 '12 at 4:49
9  
@George: Ping test 14. – FlackBot Mar 4 '12 at 5:49
12  
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''‌​'''''''''''''''''''''''''''''''''' – NullUserException อ_อ Apr 6 '12 at 17:09
3  
4  
This is intentionally a [trivial answer][1]. [1]: meta.stackoverflow.com/q/98950/188688 – MvG Jul 22 '12 at 23:09
3  
۝҈ ๛๛๛ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈ ҈۝ – mellamokb Feb 1 at 14:42
4  
show 84 more comments

190 Answers

1 2 3 4 5 7

<pre><code> has highlighting too:

Look ma, <em style="xyz">highlighting<em>!
share|improve this answer

yay keyboard tag

share|improve this answer

Markdown tables? Who needs 'em?1

╔════════════════════════════════╦═════════════════════╗
║         Major Column 1         ║    Major Column 2   ║
╠══════════╤══════════╤══════════╬══════════╤══════════╣
║ Mn Clm 1 │ Mn Clm 2 │ Mn Clm 3 ║ Mn Clm 4 │ Mn Clm 5 ║
╠══════════╪══════════╪══════════╬══════════╪══════════╣
║          │          │          ║          │          ║
╟──────────┼──────────┼──────────╫──────────┼──────────╢
║          │          │          ║          │          ║
╟──────────┴──────────┼──────────╫──────────┴──────────╢
║                     │          ║                     ║
╟──────────┬──────────┴──────────╫─────────────────────╢
║          │                     ║                     ║
╚══════════╧═════════════════════╩═════════════════════╝

Too bad the vertical spacing's a little off though...


1Just kidding. Markdown tables would be great. As would be footnotes, now that I think about it. Or even just small text so I don't have to abuse <sub>

share|improve this answer

HTML Comments

Source: <!-- this is a typical comment -->

Result:

Source: <one odd way to comment>

Result:

Source: < but it doesn't work with a leading space>

Result: < but it doesn't work with a leading space>

Source: <!- this is another odd way to comment -->:

Result:

Source: <!- too lazy for more dashes ->

Result:

Source: <-- but you need the exclamation point -->

Result: <-- but you need the exclamation point -->

Source: <the most lazy comment

Result:

share|improve this answer

Messed up


Hellooooooooooooo!


This is the smallest text you will ever see... there is no way you are reading this unless you viewed the page source or edited my answer or something. This is tiny! Impossibly tiny! Yay! I still haven't filled up a single line with all this text :/ I STILL haven't! Wow! Okay now I filled up a line finally. I will just keep typing okay I don't know what to say.



This is some very d   omatting.



OOOOOOOOOOOOOOOOOOOOOOOOOO

share|improve this answer

Bow down before my links!

Each character in the above sentence, including spaces and puntuation, is a valid link. My link density RULES ALL! :D

share|improve this answer

This is an answer which shows that using 2 spaces doesn't format as code:

This is a line with two spaces before it.

This is a line with four spaces before it.
share|improve this answer
show 3 more comments

Is VB comment syntax highlighting working?

Sub AMethod()
    'a comment
    Dim SomeCode
End Sub

'A comment
Sub AMethod()
   Dim SomeCode
End Sub

Boo that meta hides the colors :(

share|improve this answer
show 1 more comment

Test using pre/code...

public void Something()
{
  return;
}

Regular text here.


public void Something()
{
  return;
}
share|improve this answer
show 5 more comments
  • Nested
    • lists
    • are
      • fun!
      • cool!
    • is
      • nice!
      • unsupported! supported, so long as your markdown indents lists by 2+ spaces.
share|improve this answer

! Trying to get Markdown to nest multiple paragraphs in spoiler tags

! Looks unsuccessful.

However:

Omg, a title!

  • And a list too!

What is this HTML trickery?

share|improve this answer
1  
@Arjan Yes, unless... – badp's kitten Jan 19 '11 at 10:24
show 3 more comments

script: for i in $1 $2 $3 P

script with backticks and line breaks: P

for i in $1 $2 $3 P
short line P
long line long line long line long line
P

script with indent of 4 spaces: P

for i in $1 $2 $3 P  
short line P  
long line long line long line long line P

script with <pre> P

for i in $1 $2 $3 P
short line P
long line long line long line long line P

script with <pre><code> P

for i in $1 $2 $3 P
short line P
long line long line long line long line P
share|improve this answer
show 1 more comment

Some apparent whitespace problems, 10 m/s (original post):

The period of a pendulum of length $h$ for small oscillations is $2\pi \sqrt{h/g}$, with $g$ the acceleration due to gravity, about $10 m/s$.

Source:

The period of a pendulum of length $h$ for small oscillations is $2\pi \sqrt{h/g}$, with $g$ the acceleration due to gravity, about $10 m/s$.


Update: Meta Stack Overflow does not seem to have the formula stuff that Physics has.

share|improve this answer

Be aware that you can run into trouble if you try to use < inside: <code>a<b</code> gives a!


  1. You can't have a backslash \ in the end of inline code in comments. If you try `\\`, then the result will be `\`. You'll have to type `\\ ` and live with the white space being within the inline code.
share|improve this answer
show 5 more comments

Will sanitizer incorrectly strip the p tag at the end? Header 1 Header 1 Header 2

line break test

italic

bold

Google

Have you seen ?

code span<a

more test
test <a

test test test

funny

How about in lists?

  1. li1 unclosed
  2. li2 unclosed

p

  • li1 unclosed
  • li2 unclosed

bla:

  • bla
  • bla

share|improve this answer
show 1 more comment

link test

  1. The parenthesis comes off: http://en.wikipedia.org/wiki/Closure_(computer_programming)

  2. Try escaping the parenthesis with a backslash: http://en.wikipedia.org/wiki/Closure_(computer_programming)

    Looks good in the preview, but watch out!

“the C *P*re*P*rocessor” comes out differently as well.

share|improve this answer
1  
test 1 at 12:14 local time – Popular Demand Jul 27 '10 at 16:14
1  
@Arjan Yeah, I know. I just get annoyed when the server- and client-side rendering disagree. – Josh Lee Jan 31 '11 at 19:59
show 3 more comments

Testing a possible edit bug...

Here's the first edit...

And here's the second -- perhaps as a new post.

Okay so far, will try one more time...

Final test

share|improve this answer

Testing out this new Userscript I'm building. One more edit to make sure this thing works.

share|improve this answer
3  
Unix time, or POSIX time, is a system for describing points in time, defined as the number of seconds elapsed since midnight proleptic Coordinated Universal Time (UTC) of January 1, 1970, not counting leap seconds. It is used widely, not only in Unix-like operating systems, but also in many other computing systems and file formats. It is neither a linear representation of time nor a true representation of UTC (though it is frequently mistaken for both), as it cannot represent standard UTC leap seconds (e.g. December 31, 1998 23:59:60), although otherwise the times it represents are UTC. – Yi Jiang Oct 31 '10 at 8:30
show 5 more comments

Comments test. Checking various comment related stuffs

share|improve this answer
show 1 more comment

testing revision diffs blah blah

  • new line
  • new line2

  • this foobar quote

    • boo boo boo
share|improve this answer
show 1 more comment

! Spoiler block testing! Hello world

! Spoiler block testing! Test me

!Spoiler block testing! Yet Another test

! Spoiler block testing!

Hello world

Spoiler block testing!

Test me

Spoiler block testing!

Yet Another test

share|improve this answer

SQL:

-- Users with 10k+ rep
-- Find users with 10,000 or more reputation

SELECT * FROM Users WHERE Reputation >= 10000

PHP:

# Print out the text, and prevent HTML injection.
if ($_POST['text']) {
    echo htmlspecialchars($_POST['text']);
}

VBScript:

'Infinite loop with MsgBox
DO
    returnvalue = MsgBox("Hello, world!", 64, "Message");
Loop

CSS:

/* Some CSS. */
tag {
    color: red;
}
#id {
    color: orange;
}
.class {
    color: yellow;
}
[attr='value'] {
    color: lime;
}
share|improve this answer
show 2 more comments

XSS testing:

an alert

share|improve this answer

i wrote sending email function that only work my debug mode(debug local server) when i publishing and hosting C# code that function not work. this my email configuration function

share|improve this answer
show 1 more comment

Backticks.

How about some backticks ``?

VARIABLE=`ls`
share|improve this answer

Intraword italics formatting

  • SID: S-1-5-21 domain-512

  • SID: S-1-5-21*domain*-512

  • SID: S-1-5-21\s*domain*-512

  • SID: S-1-5-21domain-512. SID: S-1-5-21<em>domain</em>-512

Leads:

share|improve this answer
1 2 3 4 5 7

You must log in to answer this question.

protected by Community Jun 29 '12 at 10:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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