Formatting Text: Difference between revisions

From Riverview Legal Group
Access restrictions were established for this page. If you see this message, you have no access to this page.
m (P08916 moved page Text Editor to Formatting Text)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Tutorials]]
==Text Formatting Help==
==Text Formatting Help==
* [https://www.mediawiki.org/wiki/Help:Formatting Formatting Text]
* [https://www.mediawiki.org/wiki/Help:Formatting Formatting Text]
Line 17: Line 19:
| Bold and Underline || <nowiki><b><u>bold & underline</b></u></nowiki> || <b><u>bold & underline</b></u>
| Bold and Underline || <nowiki><b><u>bold & underline</b></u></nowiki> || <b><u>bold & underline</b></u>
|-
|-
|}
| italicize text || <nowiki><i>italicize text</i></nowiki> || <i>italicize text</i>
|-
| Center Text || <nowiki><center>Some text here</center></nowiki> || <center> Some text here</center>
|-
}
 
===Indenting Text===
 
This is text
 
:: This is indented text.
 
To indent place a : at the start of the line, see below:
<pre>
This is text
 
:: This is indented text.
</pre>
 
The more colons (:) you add the more the line is indented: see,
 
<pre>
This is text
 
::::: This is indented really far.
</pre>
 
Resulting in;
 
This is text
 
::::: This is indented really far.

Latest revision as of 13:21, 13 August 2021


Text Formatting Help

Basic HTML Text Editing

}

Indenting Text

This is text

This is indented text.

To indent place a : at the start of the line, see below:

This is text

:: This is indented text.

The more colons (:) you add the more the line is indented: see,

This is text

::::: This is indented really far.

Resulting in;

This is text

This is indented really far.
Format Code Result
Bold Text <b>Bold Text</b> Bold Text
Underline <u>underline</u> underline
Bold and Underline <b><u>bold & underline</b></u> bold & underline
italicize text <i>italicize text</i> italicize text
Center Text <center>Some text here</center>
Some text here