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
# Heading 1
### Heading 3
##### Heading 5
Emphasis
Markdown | Result |
---|---|
*Italic* |
Italic |
**Bold** |
Bold |
~~Strikethrough~~ |
|
***Both*** |
Both |
Blockquote
> This is a blockquote.
This is a blockquote.
Ordered List
1. Number One
2. Number Two
3. Number Three
- Number One
- Number Two
- Number Three
Unordered List
- Task One
- Task Two
- Task Three
- Task One
- Task Two
- Task Three
Link Method One
This is my [blog](https://medium.com/ios-geek-community).
This is my blog.
Link Method Two
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.
Image
Cover Page: ![Cover Page](https://goo.gl/ZozVdq)
Cover Page:
Table
| Course | Platform |
| --------------------------------| ----- |
| The UIKit Fundamentals with Bob | Udemy |
| RxSwift and MVVM | Udemy |
Course | Platform |
---|---|
The UIKit Fundamentals with Bob | Udemy |
RxSwift and MVVM | Udemy |
Table Align
| 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 |
Code
```swift
let name = "Bob the Developer"
print(name)
// End with adding ``` on the bottom of print(name)
let name = "Bob the Developer"
print(name)
Inline code
This is how you `highlight`
This is how you highlight
Horizontal Line
---
Footnote
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 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.