Difference between revisions of "Syntax help"

From The Powder Toy
Jump to: navigation, search
(Fixed formatting(for some reason code doesnt escape control stuff'))
(If anyone knows how to type monospace or new lines without paragraphing, amend (not revert) this edit.)
 
Line 1: Line 1:
to mark something as:
+
To mark something as:
 +
 
 +
''Italic'' use:
 +
<nowiki> ''Italic'' </nowiki>
  
 
'''Bold''' use:  
 
'''Bold''' use:  
<nowiki>''' Bold '''</nowiki>
+
<nowiki>'''Bold'''</nowiki>
  
''Italic'' use:
+
These are repeated apostrophes, not double quotation marks.
<nowiki> '' Italic '' </nowiki>
 
  
 
<ins>Underlined</ins> use:
 
<ins>Underlined</ins> use:
<nowiki> <ins> Underlined </ins> </nowiki>
+
<nowiki> <ins>Underlined</ins> </nowiki>
 
 
''Monospaced'' use:
 
<nowiki> '' Monospaced '' </nowiki>
 
 
 
  
 
To use code text (unformatted) use:
 
To use code text (unformatted) use:
Line 29: Line 27:
 
}
 
}
 
</code>
 
</code>
 
To force a new-line after your line of text, you do not always need to add an empty line between your new line, because that makes every line into a paragraph. A much simpler way(DokuWiki style) is to use a special character set: two backslashes followed by a space.
 
<code>\\ </code>
 

Latest revision as of 07:06, 20 April 2023

To mark something as:

Italic use: ''Italic''

Bold use: '''Bold'''

These are repeated apostrophes, not double quotation marks.

Underlined use: <ins>Underlined</ins>

To use code text (unformatted) use: <code>

You can use syntax highlighting, like in code editors, using:

<code language>

Example: #include <iostream> int main() { printf("Syntax highlighting"); return 0; }