Wiki Basic Syntax

From CompleteNoobs
Revision as of 12:56, 18 April 2023 by imported>AwesomO (→‎bold)
Jump to navigation Jump to search
Please Select a Licence from the LICENCE_HEADERS page
And place at top of your page
If no Licence is Selected/Appended, Default will be CC0

Default Licence IF there is no Licence placed below this notice! When you edit this page, you agree to release your contribution under the CC0 Licence


Headings

Do Not use =Level 1= Level one is for Page titles


==Level 2 heading==

===Level 3 heading===

====level 4 heading====

=====level 5 heading=====

======level 6 heading======

Info boxes

expanding content

What you will like in title:

<div class="toccolours mw-collapsible mw-collapsed">
What you will like in title:
<div class="mw-collapsible-content">

and of course the content when expanded.<br \>
<code>print "hello content"</code>
</div>
</div>

Collapsing Content

Collapse

Content title here

and here you place the content print("hello world");


<div class="toccolours mw-collapsible" style="width:400px; overflow:auto;">
<div style="font-weight:bold;line-height:1.6;">
Content title here
</div>
<div class="mw-collapsible-content">
and here you place the content
<code>print("hello world");</code>
</div>
</div>


Markup

Line Brake

<br \>

Escape markup

Escape wiki syntax markup
<nowiki>escaped markup</nowiki>

Code markup

print "hello world"
<code>print "hello world"</code>

Preforrmated context

Preformatted content
10 print "hello world"
20 goto 10


<pre> content </pre>

Customized preformatted text

<code>rm -rf /*</code><br \>
Will make your computer faster.


<pre style="color: red"> <code>rm -rf /</code><br \> Will make your computer faster. </pre>

BlockQuotes

This is a block quote

<blockquote> This is a block quote </blockquote>

Many lined
block
quote

<blockquote> Many lined <br \> block <br \> quote <br \> </blockquote>

underlined

underlined
<u>underlined</u>

bold

bold
<b>bold</b>

also three ' on each side
'''
'''bold'''
bold

Italic

''italic''
italic

bold and italic

Thats 5 ' each side

'''''Bold and italic'''''
Bold and italic

Syntax highlighting

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
<syntaxhighlight lang="python" line>
def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
</syntaxhighlight>
  • Quick copy/paste
<syntaxhighlight lang="python" line>

</syntaxhighlight>

Tables

https://www.mediawiki.org/wiki/Help:Tables

{| class="wikitable"
|+ Dns
|-
|Type
|Host
|Ip address
|TTL
|-
|A record
|@
|12.34.56.78
|auto
|-
|A record
|www
|12.34.56.78
|auto
|}
Dns
Type Host Ip address TTL
A record @ 12.34.56.78 auto
A record www 12.34.56.78 auto

Internal Links

Link to Page:
[[PAGE_NAME]]

Link to section:
[SECTION_NAME]

Link to Section on another page:
[[PAGE_NAME#SECTION | NAME_TO_DISPLAY]]

Align

left aligned
<div style='text-align: left;'>left aligned</div>
center aligned
<div style='text-align: center;'>center aligned</div>
right aligned
<div style='text-align: right;'>right aligned</div>

Embed Video

EmbedVideo Syntax