Markdown

To find out if it works, you can download the source code here. You make create your own repository on Github and create README.md file. Github will automatically show the file in the repository

Heading

  1. # Heading 1
  2. ### Heading 3
  3. ##### Heading 5

Emphasis

Markdown Result
*Italic* Italic
**Bold** Bold
~~Strikethrough~~ Strikethrough
***Both*** Both

Blockquote

  1. > This is a blockquote.

This is a blockquote.

Ordered List

  1. 1. Number One
  2. 2. Number Two
  3. 3. Number Three
  1. Number One
  2. Number Two
  3. Number Three

Unordered List

  1. - Task One
  2. - Task Two
  3. - Task Three
  • Task One
  • Task Two
  • Task Three
  1. This is my [blog](https://medium.com/ios-geek-community).

This is my blog.

  1. This is my [YouTube] channel. This is my [Facebook] Page.
  2. [YouTube]: https://youtube.com/bobthedeveloper
  3. [Facebook]: https://facebook.com/bobthedeveloper

This is my YouTube channel. This is my Facebook Page.

Image

  1. Cover Page: ![Cover Page](https://goo.gl/ZozVdq)

Cover Page: Cover Page

Table

  1. | Course | Platform |
  2. | --------------------------------| ----- |
  3. | The UIKit Fundamentals with Bob | Udemy |
  4. | RxSwift and MVVM | Udemy |
Course Platform
The UIKit Fundamentals with Bob Udemy
RxSwift and MVVM Udemy

Table Align

  1. | Tables | Are | Name |
  2. |----------|:-------------:|------:|
  3. | col 1 is | left-aligned | Bob Lee |
  4. | col 2 is | centered | Bobby Lee |
  5. | col 3 is | right-aligned | SangJoon Lee |
Tables Are Name
col 1 is left-aligned Bob Lee
col 2 is centered Bobby Lee
col 3 is right-aligned SangJoon Lee

Code

  1. ```swift
  2. let name = "Bob the Developer"
  3. print(name)
  4. // End with adding ``` on the bottom of print(name)
  1. let name = "Bob the Developer"
  2. print(name)

Inline code

  1. This is how you `highlight`

This is how you highlight

Horizontal Line

  1. ---

Footnote

  1. My goal is to provide global education.[^1]
  2. You may start learning Swift on YouTube[^2]
  3. [^1]: Comment to include in footnote.
  4. [^2]: You may watch all the videos [here](https://goo.gl/pyzzYn)

My goal is to provide global education.[^1]

You may start learning Swift on YouTube[^2]

[^1]: Comment to include in footnote.[^2]: You may watch all the videos here

What’s Next

If you want to learn how I use Markdown, you may download the entire document here.