Markdown Study Note
Markdown Study Note
Note: code top, view down
Two spaces or multiple [Return] to create new line
—, ***, ___ for sperator line
Use # for Header
# Header-1 ## Header-2 ### Header-3
Raw code
<pre> ... </pre>
Citation / Reference
> Outer reference >> Inner reference inner continue > outer reference continue
Outer reference
Inner reference
inner continue
outer reference continue
List
* list 1 * list 1.1 * at most 3 layers * what happend to the 4th layer * what happend to the 5th layer * list 2
- list 1
- list 1.1
- at most 3 layers
- what happend to the 4th layer
- what happend to the 5th layer
- what happend to the 4th layer
- at most 3 layers
- list 1.1
- list 2
1. item 1 2. item 2 3. item 3
- item 1
- item 2
- item 3
Code
``` int main(int argc, const char * argv[]) { printf("Hello, World!\n"); return 0; } ```
int main(int argc, const char * argv[])
{
printf("Hello, World!\n");
return 0;
}