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 3
##### Heading 5
Markdown | Result |
---|---|
*Italic* |
Italic |
**Bold** |
Bold |
~~Strikethrough~~ |
|
***Both*** |
Both |
> This is a blockquote.
This is a blockquote.
1. Number One
2. Number Two
3. Number Three
- Number One
- Number Two
- Number Three
- Task One
- Task Two
- Task Three
- Task One
- Task Two
- Task Three
This is my [blog](https://medium.com/ios-geek-community).
This is my blog.
This is my [YouTube] channel. This is my [Facebook] Page.
[YouTube]: https://youtube.com/bobthedeveloper
[Facebook]: https://facebook.com/bobthedeveloper
This is my YouTube channel. This is my Facebook Page.
Cover Page: ![Cover Page](https://goo.gl/ZozVdq)
| Course | Platform |
| --------------------------------| ----- |
| The UIKit Fundamentals with Bob | Udemy |
| RxSwift and MVVM | Udemy |
Course | Platform |
---|---|
The UIKit Fundamentals with Bob | Udemy |
RxSwift and MVVM | Udemy |
| Tables | Are | Name |
|----------|:-------------:|------:|
| col 1 is | left-aligned | Bob Lee |
| col 2 is | centered | Bobby Lee |
| 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 |
```swift
let name = "Bob the Developer"
print(name)
// End with adding ``` on the bottom of print(name)
let name = "Bob the Developer"
print(name)
This is how you `highlight`
This is how you highlight
---
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](https://goo.gl/pyzzYn)
My goal is to provide global education.1
You may start learning Swift on YouTube2
If you want to learn how I use Markdown, you may download the entire document here.