# MarkDown:
<!-- [https://www.markdownguide.org/basic-syntax/](https://www.markdownguide.org/basic-syntax/) -->
**second user**
**Third user**
**user third**
***Third one by temp456**
**Using markdown with gdrive**
Go to drive and click new then connect more apps
Search and install stackedit
(if fails follow this)
Go to stackedit.io and login with google allow access
Then create a new file and click on add a google drive workspace
Then select a folder for markdown files on drive
This will create new files(.md) on our drive when we create it in stackedit
(alternatively we can create a file on drive and edit with stackedit)
Everytime we open stackedit a new untitled file is created so open existing one or delete untitled file regularly
Single enter is a new paragraph(multiple enters does nothing)
<!-- Headings Similar to <h1> </h1> in html-->
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
<!-- Italics -->
*This text* is italic
_This text_ is italic
<!-- Strong -->
**This text** is italic
__This text__ is italic
<!-- Strikethrough -->
~~This text~~ is strikethrough
<!-- Horizontal Rule -->
---
___
<!-- Blockquote -->
> This is a quote
<!-- Links -->
[google](http://www.google.com)
[google1](http://www.google.com "text instead of link above")
<!-- UL -->
* Item 1
* Item 2
* Item 3
* Nested Item 1
* Nested Item 2
<!-- OL -->
1. Item 1
2. Item 2
3. Item 3
<!-- Inline Code Block -->
`<p>This is a paragraph</p>`
<!-- Images -->

<!-- Github Markdown -->
<!-- Code Blocks -->
```bash
npm install
npm start
```
```javascript
function add(num1, num2) {
return num1 + num2;
}
```
```python
def add(num1, num2):
return num1 + num2
```
<!-- Tables -->
(three hypens to say it is a column, | to show it as a table)
| Name | Email |
| --- | --- |
|Mr.T | T@gmail.com|
|Mr.Mystery | Mystery@somell.com|
<!-- Task List -->
* [x] Task 1
* [x] Task 2
* [ ] Task 3