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
## Image Link


## Original Sized Link

## Image Link Example



......

Web URL Link

# Web URL Link
[URL Label](Web URL)
[ImageLink](WebURL)
## Example
### Simple
[Synapdata Inc.](http://www.synapdata.com)
### Using Image as Label
[](http://www.synapdata.com)
......

Youtube Link
# 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