Template:Code/testcases

From Wikipedia, the free encyclopedia


Live version

Template:Code

<html> <head> <title>...</title> </head> <body>...</body> </html>

Most HTML elements are enclosed between a start tag and an end tag, such as <p>...</p>. Some are not, such as <br>.

Sandbox version

Template:Code/sandbox

<html> <head> <title>...</title> </head> <body>...</body> </html>

Most HTML elements are enclosed between a start tag and an end tag, such as <p>...</p>. Some are not, such as <br>.

Testing sandbox version[edit]

Font Size[edit]

Fontsize in FF:

Plain
  • Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
{{code}}
  • Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
{{code/sandbox}}
  • Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
<code>...</code>
  • Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
syntaxhighlight
  • Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
font-family:monospace; only
  • Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Markup behaviour[edit]

plain ''ABC'' <b>bold</b> <b>bold</b> lang=html {{mdash}} {{PAGENAME}}
{{code}} plain ''ABC'' <b>bold</b> <b>bold</b> Code/testcases
{{code/sandbox}} plain ''ABC'' <b>bold</b> <b>bold</b> Code/testcases
<syntaxhighlight inline> plain ''ABC'' <b>bold</b> <b>bold</b> {{mdash}} {{PAGENAME}}
<code><nowiki> plain ''ABC'' <b>bold</b> <b>bold</b> {{mdash}} {{PAGENAME}}
<code> plain ABC bold bold Code/testcases
&ndash; &ndash;
lang=something
{{code}} &ndash; &ndash;
{{code/sandbox}} &ndash;
<syntaxhighlight inline> &ndash; &ndash;
<code><nowiki>
<code>

Misc tests[edit]

Sandbox code
  • Foo bar fee fi fo fum baz quux.
  • Foo bar <div id="quux" class="weasel-razor">blah blah blah</div> baz quux.
  • Measure me: ! ! ! ! ! !

Spaces between proportional and monospaced segments are (depending on browser) precisely or very close to precisely the same as the spaces between characters inside the monospaced segment (which are necessarily larger than those between characters in the proportional segments).

Old code
  • Foo bar fee fi fo fum baz quux.
  • Foo bar <div id="quux" class="weasel-razor">blah blah blah</div> baz quux.
  • Measure me: ! ! ! ! ! !

Spaces between proportional and monospaced segments are (depending on browser) farcically smaller than the spaces between characters inside the monospaced segment, making the content weird-looking and hard to parse.

Comparisons

Blow up your font size to twice normal or so, and get out a ruler.

  • Measure me: ! ! ! ! ! !  {{kbd}} (intentionally wider padding to match wider monospacing)
  • Measure me: ! ! ! ! ! !  {{kbd|spacing=n}}
  • Measure me: ! ! ! ! ! !  {{samp}}
  • Measure me: ! ! ! ! ! !  {{code/sandbox}}
  • Measure me: ! ! ! ! ! !  {{code}}
  • Measure me: ! ! ! ! ! !  <code>

For cases where the padding left or right is undesirable, use |l=n or |r=n (or any other value, like 'no" or "0", with either parameter:

  • Measure me: ! ! ! ! ! !  {{code/sandbox|l=n}}
  • Measure me: ! ! ! ! ! !  {{code/sandbox|r=n}}
  • Measure me: ! ! ! ! ! !  {{code/sandbox|l=n|r=n}}
  • Measure me: ! ! ! ! ! !  {{code/sandbox}}
  • Measure me: ! ! ! ! ! !  {{code|l=n}}
  • Measure me: ! ! ! ! ! !  {{code|r=n}}
  • Measure me: ! ! ! ! ! !  {{code|l=n|r=n}}
  • Measure me: ! ! ! ! ! !  {{code}}

lang tests[edit]

Test cases
  • The declaration {{code |lang=cpp |int foo(const std::string& bar, const std::vector<long double*>& baz);}} is the prototype for a function defined later.
  • If the code contains an [[equals sign]], such as {{code |lang=javascript |code=var img = document.getElementsByTagName("img");}}...
  • The following is an example of a main method in Java: {{code | public static void main(string[] args){ System.out.println("Hello world!"); } | java}}
{{code}}
  • The declaration int foo(const std::string& bar, const std::vector<long double*>& baz); is the prototype for a function defined later.
  • If the code contains an equals sign, such as var img = document.getElementsByTagName("img");...
  • The following is an example of a main method in Java: public static void main(string[] args){ System.out.println("Hello world!"); }
{{code/sandbox}}
  • The declaration int foo(const std::string& bar, const std::vector<long double*>& baz); is the prototype for a function defined later.
  • If the code contains an equals sign, such as var img = document.getElementsByTagName("img");...
  • The following is an example of a main method in Java: public static void main(string[] args){ System.out.println("Hello world!"); }