User:Anthonykozar/Sandbox
		
		
		
		
		
		Jump to navigation
		Jump to search
		
		
	
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
Put asterisks or underscores around text for emphasis.
Put two asterisks or underscores around text for strong emphasis.
Lists
Ordered List
- First item
- Second item
- Third item
Unordered List
- List item
- Another item
- And another item
Nested list
- Fruit
- Apple
- Orange
- Banana
 
- Dairy
- Milk
- Cheese
 
List items can begin with any of *, +, or -. Nested lists must be indented 4 spaces or one tab and can use the same or a different marker.
Tables
| n | Σ(n) | 
|---|---|
| 1 | 1 | 
| 2 | 4 | 
| 3 | 6 | 
| 4 | 13 | 
Outside pipe characters are optional.
| n | Σ(n) | 
|---|---|
| 1 | 1 | 
Add colons to set column alignment:
| Left | Center | Right | 
|---|---|---|
| 1 | 1 | 1 | 
| 10 | 10 | 10 | 
| 100 | 100 | 100 | 
Blockquotes
Blockquotes are created by prefixing each line with ‘>’ signs in the same way as email replies.
Code
Put backquotes around inline code such as fib(10).
Code blocks are indented 4 spaces or one tab:
def fib(n):
    if n < 3: return 1
    else:
        return fib(n-2) + fib(n-1)
HTML entities
a < b implies b > a. Did you get that?
a < b implies b > a. Did you get that?