sohee-b / markdown-cheatsheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Note

Includes "non-official" specs of the Markdown language, supported by some markdown renderers.

Table of Contents


Code

Inline Code

`inline code`

Code Block

```
code block
```

Language syntax highlighting

guard let a = b else {
   return 
}
```swift 
guard let a = b else {
   return 
}
```



Collapsible Section

Click To Expand

  • Add details


**<details><summary>Click To Expand</summary>**<p>
- Add details
</p></details>



Emojis

😎 πŸ‘ 😁 πŸŽ‰ ❀️

:sunglasses: :+1: :grin: :tada: :heart:

FYI

Complete list of emojis



Headers

H1

# H1

H2

## H2

H3

### H3

H4

#### H4
H5
##### H5
H6
###### H6



Heading Anchor

A Header

#### A Header

An anchor for the header

#### [An anchor for the header](#a-header)



Image

alt-text

![alt-text](https://user-images.githubusercontent.com/35065894/47775181-550fc400-dd32-11e8-8892-4e83a28b5031.png)



Link

markdown-cheatsheet

[markdown-cheatsheet](https://github.com/sohee-b/markdown-cheatsheet)



Lists

  • Bulleted
  • List
- Bulleted
  - List

  1. Numbered
  2. List
1. Numbered
2. List

  • Checkbox
  • List
- [x] Checkbox
- [ ] List

  • Nested List
    1. Nested List
      • Nested List
- Nested List
  1. Nested List
      - [x] Nested List



Quotes

quote

> quote

nested quote

>>> nested quote



Separator


---



Typographical Emphasis

Bold

**Bold** or __Bold__

Italic

*Italic* or _Italic_

Bold & Italic

**_Bold & Italic_**

Strikethrough

~~Strikethrough~~

Underline

<ins>Underline</ins>



Whitespaces

Newline

Add two spaces after a line

Whitespace

&nbsp;

To Be Added

  • table
  • resized image

About