markdown format code example
Example 1: how to create link in readme.md
[a link] (https://github.com/user/repo/blob/branch/other_file.md)
Example 2: code in markdown
```<name of the language>
<code>
```
EXAMPLE
```python
print("Hello World")
```
Example 3: markdown hyperlink syntax
[Link to Google](https://www.google.com)
Example 4: italics markdown
# Italic
An example of *italic* text
An example of *italic* text
# Bold
An example of **bold text**
An example of __bold text__
# Bold and Italic
An example of ***bold and italic text***
An example of ___bold and italic text___
Example 5: bold markdown
# Bold
I just love **bold text**.
I just love __bold text__.
Love**is**bold
# Italic
Italicized text is the *cat's meow*.
Italicized text is the _cat's meow_.
A*cat*meow
Example 6: Markdown heading
# Title //Creates a h1
## Title //Creates a h2
##### Title //Creates a h5