Text formatting
Description | Input | Output |
---|---|---|
Italicize text | ''italic'' OR <i>italic</i>
|
italic |
Bold text | '''bold''' OR <b>bold</b>
|
bold |
Bold and italic | '''''bold & italic''''' OR <b><i>bold & italic</i></b> OR <i><b>bold & italic</b></i>
|
bold & italic |
Internal link (within a wiki) |
[[Help:Contents]]
|
Help:Contents Displayed text |
Redirect to another page | #REDIRECT [[Help:Contents]]
|
Help:Contents |
External link (to other websites or wiki pages outside Adopt Me! Wiki) |
[https://www.example.org]
|
[1] |
Sign your posts on talk pages without time |
~~~ (3 tildes)
|
Your username |
Sign your posts on talk pages with time |
~~~~ (4 tildes)
|
Your username 11:42, 5 October 2024 (UTC) |
Insert the current date and time (UTC). Generally only used on talk pages. | ~~~~~ (5 tildes)
|
11:42, 5 October 2024 (UTC) |
Display wikitext code as typed | <nowiki>[[This is not a link]]</nowiki>
|
[[This is not a link]] |
Description | Input | Output |
---|---|---|
Headings A Table of Contents will automatically be generated when four headings are added to an article. (Skip level 1; it's used for the page name.) |
|
Level 2
Level 3
Level 4
Level 5
Level 6
|
Indented paragraph or line |
|
No indent
|
Bulleted list |
|
|
Numbered list |
|
|
Mixed list |
|
|
Preformatted text with working links |
" "Color Text (note space at start, remove quotation marks) |
Color Text |
Preformatted text that shows underlying wikitext |
<pre>[[Color]] Text</pre> |
[[Color]] Text |
Image Formatting
Customizing Image Formatting
- 100 pixels (100px)
- Link to Pets (link=Pets)
- Make it at the center of the page (center)
Note: Use a vertical bar "|" to separate commands.
[[File:NewFissy.png|100px|link=Pets|center]]
HTML Tags
<span>
Tag
The HTML <span>
tag is used for grouping and applying styles to inline elements. In other words, the tag focuses on the text only.
<span>
allows you to import CSS styles, such as background color, color, etc. that will make text appear differently such as highlighting!
Description | Input | Output |
---|---|---|
Changing Text Color (using name color) color:colorname |
<span style="color:red">Example text</span>
|
Example text |
Changing Text Color (using HEX) color:#RRGGBB |
<span style="color:#FF7F50">Example text</span>
|
Example text |
Changing Text Color (using RGB) color:rgb(x, x, x) |
<span style="color:rgb(255,215,0)">Example text</span>
|
Example text |
Highlighting Text background-color |
<span style="background-color:yellow">Example text</span>
|
Example text |
Customizing <span>
Styles
- the text highlight in color coral (background-color:coral)
- make the text color dark cyan (color:darkcyan)
Note: Use semicolon ";" to seperate styles.
<span style="background-color:coral; color:darkcyan;">Example Text</span>
Example Text