# Git Markdown

## This file is used to get an idea on how to write text on Github

**Good resource for -->** [**Click here**](https://guides.github.com/features/mastering-markdown/)

### Writing Text on Github:

## heading 1 --> converted to

## in html

### heading 2

#### heading 3

**heading 4**

**heading 5**

**heading 6**

Normal Text

**Bold Text**

*Italic Text*

~~strikthrough Text~~

### Writing lists on Github:

#### Unordered lists:

* item 1
* item 2
  * sub item 2b

#### Ordered lists:

1. item 1
2. item 2
3. item 3

#### Item Completion list:

* [ ] \[] item 1 incomplete
* [x] item 2 complete

#### Linking itmes:

[TextThatYouWantToApper](https://link-to-what-you-want.com)

#### Displaying images:

In brackets you would put the local path to the image or the URL:

![TextThatYouWantToApper](https://link-to-image.com)

#### Code Blocks:

| column 1 | column 2 |
| -------- | -------: |
| row1a    |    row2a |

Note: To left align column :--- To right align column ---:

This is `console.log()`

or:

```
console.log()
```

With above you can mark the language

```python
console.log()
```

**Code Block Highlighting:**

Basic example:

Before:

```python
const_data = []
```

After:

```python
const_data = {}
```

Better way of doing thigs:

```diff
- const_data = []
+ const_data = {}
```

#### Quotes:

> Idea 1

Agree

> Idea 2

Disagree

**Closing an issue when the pull request gets merged**

closes #3543534 - Number of the issue fixes #34435 - Number of the issue
