Difference between revisions of "Help:Editing"
Nonsensical (talk | contribs) (New page: == Code Samples == When you want to display a sample of code so that it appears in a grey box without wiki formatting, use: <pre><pre>code to display</pre></pre> == Redirects...) |
|||
Line 1: | Line 1: | ||
== Code Samples == | == Code Samples == | ||
− | When you want to display a sample of code so that it appears in a | + | When you want to display a sample of code so that it appears in a gray box without wiki formatting, use: |
<pre><pre>code to display</pre></pre> | <pre><pre>code to display</pre></pre> | ||
Line 7: | Line 7: | ||
<pre> | <pre> | ||
− | #REDIRECT [[Internal | + | #REDIRECT [[Internal link]] |
</pre> | </pre> | ||
+ | |||
+ | == Quotes == | ||
+ | |||
+ | Long quotes can be displayed in two ways: | ||
+ | |||
+ | {| | ||
+ | |- style="background:#DDDDDD;" | ||
+ | |style="width:50%"| '''What you type''' | ||
+ | |style="width:50%"| '''What it looks like''' | ||
+ | |- | ||
+ | | | ||
+ | <pre><blockquote>Quote text. -Author</blockquote></pre> | ||
+ | | | ||
+ | <blockquote>Quote text. -Author</blockquote> | ||
+ | |- style="background:#DDDDDD;" | ||
+ | |style="width:50%"| '''What you type''' | ||
+ | |style="width:50%"| '''What it looks like''' | ||
+ | |- | ||
+ | | | ||
+ | <pre>{{quotation | ||
+ | |1=Quote text. | ||
+ | |2=Author. | ||
+ | }}</pre> | ||
+ | | | ||
+ | {{quotation | ||
+ | |1=Quote text. | ||
+ | |2=Author. | ||
+ | }} | ||
+ | |} |
Revision as of 05:37, 10 May 2007
Code Samples
When you want to display a sample of code so that it appears in a gray box without wiki formatting, use:
<pre>code to display</pre>
Redirects
#REDIRECT [[Internal link]]
Quotes
Long quotes can be displayed in two ways:
What you type | What it looks like |
<blockquote>Quote text. -Author</blockquote> |
|
What you type | What it looks like |
{{quotation |1=Quote text. |2=Author. }} |
|