Difference between revisions of "Sandbox"

From Remeis-Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
This is the Remeis-Wiki sandbox and quick editing guide. Feel free to play around here or to add/modify examples.
 
This is the Remeis-Wiki sandbox and quick editing guide. Feel free to play around here or to add/modify examples.
 +
 +
== Formatting text ==
 +
 +
Line breaks:
 +
  <nowiki><br /></nowiki>
 +
 +
Code blocks:
 +
  <nowiki><code>function(record) { record.save(); }</code></nowiki><br />
 +
  would result in
 +
  <code>function(record) { record.save(); }</code>
 +
 +
Box around text:
 +
  <nowiki>&#9251;&#9251; (two spaces)</nowiki><br />
 +
  would result in, e.g., this box
  
 
== Lists ==
 
== Lists ==
Line 21: Line 35:
 
   <nowiki>[URL]</nowiki>
 
   <nowiki>[URL]</nowiki>
 
   <nowiki>[URL Label]</nowiki>
 
   <nowiki>[URL Label]</nowiki>
 +
 +
== Media ==
 +
 +
How to insert [https://www.mediawiki.org/wiki/Help:Images images]:
 +
  <nowiki>[[File:image.jpg]]</nowiki>
 +
  <nowiki>[[File:image.jpg|560px|Caption]]</nowiki>

Revision as of 14:12, 11 April 2018

This is the Remeis-Wiki sandbox and quick editing guide. Feel free to play around here or to add/modify examples.

Formatting text

Line breaks:

 <br />

Code blocks:

 <code>function(record) { record.save(); }</code>
would result in function(record) { record.save(); }

Box around text:

 ␣␣ (two spaces)
would result in, e.g., this box

Lists

Bullets:

 * level 1 item
 * another level 1 item
 ** level 2 item
  • level 1 item
  • another level 1 item
    • level 2 item

Links

How to insert internal links:

 [[Name_of_the_page]]
 [[Name_of_the_page|Label]]


How to insert external links:

 [URL]
 [URL Label]

Media

How to insert images:

 [[File:image.jpg]]
 [[File:image.jpg|560px|Caption]]