Many posts in this topic will be wikis. They can be edited and updated by anybody with Trust Level 2 or higher. Please contribute!
-
Placeholder 1
-
Placeholder 2
-
Placeholder 3
-
Placeholder 4
-
Placeholder 5
-
Formatting With Markdown
Many posts in this topic will be wikis. They can be edited and updated by anybody with Trust Level 2 or higher. Please contribute!
You can format your posts with Markdown, which is a bit different than the BBCode you might be used to (you can still use most BBCode too).
If you type this: | - | You will get this: |
---|---|---|
**Bold** | - | Bold |
*Italics* | - | Italics |
***Bold & Italics*** | - | Bold & Italics |
~~Strikethrough~~ | - |
You cannot have any spaces between the markdown symbols and their adjacent letters. Typing ** bold** or ~~strike ~~ won’t work.
Type this
> This is a blockquote
To get this:
This is a blockquote
You need to hit Enter/Return twice to get out of a block quote.
Type this:
> First line
Second line is still in the quote
To get this:
First line
Second line is still in the quote
Or
Type this:
> First line
Second line is outside the quote
To get this:
First line
Second line is outside the quote
Type this:
> Blockquotes can be nested
>> inside one another
>>> if you want to do that
To get this:
Blockquotes can be nested
inside one another
if you want to do that
Type this:
> You can have a blockquote with multiple paragraphs.
>
> This is the second paragraph.
To get this:
You can have a blockquote with multiple paragraphs.
This is the second paragraph
Type this:
- List item
- Another list item
- The final list item
To get this:
Numbered lists are created just by typing them. Use four spaces to indent a nested list.
Type this:
\*yawn\*
To get this:
*yawn*
The markdown for code can also be used for any pre-formatted text, including all your finest ASCII art.
Sample text `some code` more text.
Sample text some code
more text.
```
for each pseudo-code {
do function;
}
```
for each pseudo-code {
do function;
}
```php
<div>
<h3>A Title</h3>
<?php
if ( $suck == TRUE ) {
echo "you suck";
} else {
echo "no suck";
}
?>
</div>
```
<div>
<h3>A Title</h3>
<?php
if ( $suck == TRUE ) {
echo "you suck";
} else {
echo "no suck";
}
?>
</div>