Open main menu

CDOT Wiki β

Changes

Help:Editing

3,508 bytes removed, 00:56, 17 September 2006
Text Formatting
|
<pre>
= Section =
 
== Sub-section ==
 
=== Sub-sub-section ===
 
==== Sub-sub-sub=section ====
</pre>
|-
|-
|class="header" width="50%" colspan="2"|Paragraphs and Newlines
|-
 
|-
|
A single carriage-return between
lines does nothing.
 
Leaving a blank line
 
indicates a new paragraph.
 
You can<br />
use "br" tags<br />
to force<br />
a newline.
|
<pre>
A single carriage-return between
lines does nothing.
 
Leaving a blank line
 
indicates a new paragraph.
 
You can<br />
use "br" tags<br />
to force<br />
a newline.
</pre>
|-
|}
 
== Text Formatting ==
{| class="fullwidth-table"
|-
|}
 
== Lists ==
{| class="fullwidth-table"
|-
|class="header" width="50%"|Result
|class="header" width="50%"|Markup
|-
 
|-
|class="header" colspan="2"|Bulleted Lists
|-
 
|-
|
* Manuals
** Reference
** Guide
* Articles
** Tutorials
*** JavaScript
*** HTML
*** CSS
** Tips & Tricks
* FAQs
 
List bullets, indenting, and so forth can be changed via CSS.
|
<pre>
* Manuals
** Reference
** Guide
* Articles
** Tutorials
*** JavaScript
*** HTML
*** CSS
** Tips & Tricks
* FAQs
</pre>
|-
 
|-
|class="header" colspan="2"|Numbered Lists
|-
 
|-
|
# Manuals
## Reference
## Guide
# Articles
## Tutorials
### JavaScript
### HTML
### CSS
## Tips & Tricks
# FAQs
 
List numbers and styling can be changed via CSS.
|
<pre>
# Manuals
## Reference
## Guide
# Articles
## Tutorials
### JavaScript
### HTML
### CSS
## Tips & Tricks
# FAQs
</pre>
|-
|}
 
== Links ==
{| class="fullwidth-table"
|-
|class="header" width="50%"|Result
|class="header" width="50%"|Markup
|-
 
|-
|class="header" colspan="2"|Internal Links
|-
 
|-
|
'''Simple internal link to another page...'''
 
April 1st is [[April Fool's Day]].
 
|
<pre>
April 1st is [[April Fool's Day]].
</pre>
|-
 
|-
|
'''Internal link where the target page title is different than the link text...'''
 
[[April Fool's Day|April 1st]] happens to be Dria's birthday.
 
|
<pre>
[[April Fool's Day|April 1st]] happens to be Dria's birthday.
</pre>
|-
 
|-
|
'''Internal link to a specific section of another page...'''
 
[[April Fool's Day#Birthdays|Some April Fool Birthdays]].
 
|
<pre>
[[April Fool's Day#Birthdays|Some April Fool Birthdays]].
</pre>
|-
 
|-
|
'''Endings are blended into the link...'''
 
In April, the [[crocus]]es begin to bloom.
 
|
<pre>
In April, the [[crocus]]es begin to bloom.
</pre>
|-
 
|-
|
'''Adding a signature that links to your User page...'''
 
[[User:Dria|Dria]]
 
or
 
[[User:Dria|Dria]] 13:39, 15 Mar 2005 (EST)
 
|
<pre>
~~~
 
or
 
~~~~
</pre>
|-
 
|-
|class="header" colspan="2"|External Links
|-
 
|-
|
'''Straight URL linking...'''
 
http://www.mozilla.org
|
<pre>
http://www.mozilla.org
</pre>
|-
 
|-
|
'''External Link with different link text...'''
 
[http://www.mozilla.org Mozilla Project]
|
<pre>
[http://www.mozilla.org Mozilla Project]
</pre>
|-
 
|-
|
'''Link to bug in Mozilla's Bugzilla...'''
 
{{bug|322603}}
|
<pre>
{{bug|322603}}
</pre>
|-
 
|-
|class="header" colspan="2"|Interwiki Links
|-
 
|-
|
TBD
|
TBD
|-
 
|}
 
== Comments ==
<table class="fullwidth-table">
<td class="header" width="50%">Result</td>
<td class="header" width="50%">Markup</td>
</tr>
<tr>
<td>
The comment here is not shown
in the result. It is exactly the
same as an HTML comment.
 
Use comments to leave notes and
instructions for other writers,
editors, and reviewers.
 
<!--- Here's the comment. --->
</td>
<td>
<pre>
The comment here is not shown
in the result. It is exactly the
same as an HTML comment.
 
Use comments to leave notes and
instructions for other writers,
editors, and reviewers.
 
<!--- Here's the comment. --->
</pre>
</td>
</tr>
</table>
= Advanced markup =
1
edit