openstack server show ${server_id}
MediaWiki cheat sheet: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Overview = A list of commonly used MediaWiki formats. = Tips = To create a newline, you need to press Enter twice: <pre> This must be on a new line </pre> This must be on a new line <pre> This must be on a new line </pre> This must be on a new line = Lists = <pre> * One ** Two *** Three </pre> One ** Two *** Three <pre> # One # Two ## Two.one ### Two.one.one </pre> One Two Two.one Two.one.one = Bold and Italic = <pre> '' This is italic'' '''This is...") |
(→Test) |
||
(13 intermediate revisions by 2 users not shown) | |||
Line 43: | Line 43: | ||
Two.one.one | Two.one.one | ||
= Bold and | |||
= Bold and italic = | |||
<pre> | <pre> | ||
'' This is italic'' | '' This is italic'' | ||
Line 99: | Line 100: | ||
This is text | This is text | ||
</syntaxhighlight> | </syntaxhighlight> | ||
= Source code = | = Source code = | ||
Line 114: | Line 114: | ||
echo "Hello world!" | echo "Hello world!" | ||
</syntaxhighlight> | </syntaxhighlight> | ||
= Create tabs within a page = | |||
<pre> | |||
<tabber> | |||
|-|OpenStack CLI= | |||
<syntaxhighlight lang='bash'> | |||
openstack server show ${server_id} | |||
</syntaxhighlight> | |||
|-|OpenStack Dashboard= | |||
gugus (dashboard) | |||
[[File:Debian VM Creation Dashboard manual 01.png|400px]] | |||
|-|OpenTofu= | |||
gugus (tofutofu) | |||
</tabber> | |||
</pre> | |||
This results in: | |||
<tabber> | |||
|-|OpenStack CLI= | |||
<syntaxhighlight lang='bash'> | |||
openstack server show ${server_id} | |||
</syntaxhighlight> | |||
|-|OpenStack Dashboard= | |||
gugus (dashboard) | |||
[[File:Debian VM Creation Dashboard manual 01.png|400px]] | |||
|-|OpenTofu= | |||
gugus (tofutofu) | |||
</tabber> | |||
[[Category: Troubleshooting]] |
Latest revision as of 10:36, 10 July 2024
Overview
A list of commonly used MediaWiki formats.
Tips
To create a newline, you need to press Enter twice:
This must be on a new line
This must be on a new line
This must be on a new line
This must
be on a new line
Lists
* One ** Two *** Three
One ** Two *** Three
# One # Two ## Two.one ### Two.one.one
One Two Two.one Two.one.one
Bold and italic
'' This is italic'' '''This is bold''' '''''This is bold and italic'''''
This is italic
This is bold
This is bold and italic
Headings
= One = == Two == === Three === ==== Four ====
One
Two
Three
Four
Links
Link:
https://www.stepping-stone.ch/en/
https://www.stepping-stone.ch/en/
Cool link:
[https://www.stepping-stone.ch/en/ Homepage]
Link within the wiki
[[Main_Page | Main Page]]
Text blocks
<syntaxhighlight lang="text"> This is text </syntaxhighlight>
This is text
Source code
<syntaxhighlight lang="bash"> #!/bin/bash echo "Hello world!" </syntaxhighlight>
#!/bin/bash
echo "Hello world!"
Create tabs within a page
<tabber> |-|OpenStack CLI= <syntaxhighlight lang='bash'> openstack server show ${server_id} </syntaxhighlight> |-|OpenStack Dashboard= gugus (dashboard) [[File:Debian VM Creation Dashboard manual 01.png|400px]] |-|OpenTofu= gugus (tofutofu) </tabber>
This results in: