Markdown Reference

Headings

# H1
## H2
### H3
......

List

Ordered List

1. Numbered Item 1
1. Numbered Item 2
    1. Numbered Item 3
    1. Numbered Item 4
......

Bullet List

- Item 1
- Item 2
	- Item 3
	- Item 4
......

Mixed List

1. Numbered Item 1
1. Numbered Item 2
	- Item 1
		1. Numbered Item 3
		1. Numbered Item 4
	- Item 2
		1. Numbered Item 4
......

Block Quote

> Quoted Text
> 
> This is Quoted text contineing...
> Another line.
> ......

> Single Line.

Code Block

```
//
//  AppDelegate.swift
//  SlipStack_Mac
//
//  Created by baboo's mac on 2017. 12. 1..
//  Copyright © 2017년 baboo's mac. All rights reserved.
//

import Cocoa

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
	
	func applicationDidFinishLaunching(_ aNotification: Notification) {

	......
```

Table

| Align Left | AlignCenter | Align Right |
|:---|:---:|---:|
| item 1| item 2 | item3 |
......

Horizontal Rule

---

***

......
## Image Link
![ImageLabel](Image URL)
![H_SIZExV_SIZE ImageLabel](Image URL)

## Original Sized Link
![ImageLabel](/Users/osta/Desktop/20180227145317_pexels-photo-760248.jpeg)

## Image Link Example
![100x100 CustomSize](/Users/osta/Desktop/20180227145317_pexels-photo-760248.jpeg)
![200x0 HorizontalConstraint](/Users/osta/Desktop/20180227145317_pexels-photo-760248.jpeg)
![0x200 VerticalConstraint](/Users/osta/Desktop/20180227145317_pexels-photo-760248.jpeg)

......
# Web URL Link
[URL Label](Web URL)
[ImageLink](WebURL)


## Example
### Simple
	[Synapdata Inc.](http://www.synapdata.com)
### Using Image as Label
	[![100x100 image](/Users/osta/Desktop/20180227145317_pexels-photo-760248.jpeg)](http://www.synapdata.com)

......
# Youtube Link

u[VideoLabel](Youtube Address)

## Note: Youtube Address

https://www.youtube.com/watch?v=lHfAsX3Pn5s -> Address: lHfAsX3Pn5s


## Example

### Normal
u[SlipStackIntro](lHfAsX3Pn5s)

### With Scale & Crop
u[400x240 SlipStackIntro](lHfAsX3Pn5s)

......

Style

Bold

# Bold

This is **Bold** text.

this is __Bold__ text too.

......

Italic

# Italic

This is *Italic* text.

This is _Italic_ text too.

......

Strike Through

# Strike Through

This is ~~Strike Through~~.

Inline Code

# Inline Code

This is `Inline Code`.

Last updated