Markdown Reference
Last updated
Last updated
# H1
## H2
### H3
......
1. Numbered Item 1
1. Numbered Item 2
1. Numbered Item 3
1. Numbered Item 4
......
- Item 1
- Item 2
- Item 3
- Item 4
......
1. Numbered Item 1
1. Numbered Item 2
- Item 1
1. Numbered Item 3
1. Numbered Item 4
- Item 2
1. Numbered Item 4
......
> Quoted Text
>
> This is Quoted text contineing...
> Another line.
> ......
> Single Line.
```
//
// 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) {
......
```
| Align Left | AlignCenter | Align Right |
|:---|:---:|---:|
| item 1| item 2 | item3 |
......
---
***
......
## 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)
......
# Bold
This is **Bold** text.
this is __Bold__ text too.
......
# Italic
This is *Italic* text.
This is _Italic_ text too.
......
# Strike Through
This is ~~Strike Through~~.
# Inline Code
This is `Inline Code`.