Help:Editing: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 24:
Displays as:
* Dot Point
 
===Ordered List===
For an ordered list use <pre>
<li> First </li>
<li> Second </li>
</pre>
Displays as
<li>First </li>
<li>Second </li>
 
=== Numbering ===
For numbering use <pre><ol>
<li> First Instruction </li>
<li> Second Instruction </li>
</ol> </pre>
Displays as
 
<ol>
<li> First Instruction </li>
<li> Second Instruction </li>
</ol>
 
=== Internal Links ===
Line 172 ⟶ 151:
----
Text below
|-
===|Ordered List===list
|
<pre>
<li> First </li>
<li> Second </li>
<li> Third </li>
<li> Fourth </li>
</pre>
|
<li>First </li>
<li>Second </li>
<li>Third </li>
<li>Fourth </li>
|-
| Bullet list
Line 192 ⟶ 185:
*** But jumping levels creates empty space.
Any other start ends the list.
|-
===| Numbering ===
|
<pre><ol>
<li> First Instruction </li>
<li> Second Instruction </li>
<li> Third Instruction </li>
<li> Fourth Instruction </li>
</ol> </pre>
|
<ol>
<li> First Instruction </li>
<li> Second Instruction </li>
<li> Third Instruction </li>
<li> Fourth Instruction </li>
</ol>
|-
| Numbered list
Line 307 ⟶ 316:
== Paragraphs ==
MediaWiki ignores single line breaks. To start a new paragraph, leave an empty line. You can force a line break within a paragraph with the HTML tags <code>&lt;br /></code>.
For a break line use
<pre>
TUFLOW<br> Model<br>
</pre>
Displays as:<br>
Tuflow<br> Model <br>
 
 
== HTML tags ==