Git Hub Markdown Cheat Sheet
Jeevan Henry Dsouza
Full Stack Developer | JavaScript | React | MySQL | NodeJS | SpringBoot | Monolith | MicroServices | SaaS | Frontend Development | User Interface Design
<!-- What is markdown -->
<!-- Markdown is a way to style text on the web. We control the display of the document;formatting words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few nonalphabetic characters thrown in, like # or ?-->
<!-- Heading -->
# Hello Heading One
## Hello Heading Two
### Hello Heading Three
#### Hello Heading 4
##### Hello Heading Five
###### Hello Heading Six
<!-- EMPHASIS -->
<!-- Bold -->
**Bold**
**Bold**
<!-- Italic -->
_Italic_
_Italic_
<!-- Strikethrough -->
~~999~~ 699
<!-- Combining Both Bold and Italic -->
_Hello_ **Bold** _Italic_
领英推荐
<!-- List -->
<!-- Order List -->
1. One
2. Two
3. Three
1. Hello (sublist or nested list)
2. Two 3. Three 1. one 2. Two
<!-- Unorder List -->
- Hello One
- Hello Two
- Hello One
- Hello Two
<!-- Code Block -->
``` for (let i = 0; i < cars.length; i++) {?text += cars[i] + "<br>"; } ```
<!-- Link -->
[Name](https://www.google.com/ "Google")
<!-- Paragraph -->
Write Normally its Paragraph
<!-- Table Format -->
Table 1 | Table 2 | Table 3 |
| ------- | ------- | ------- |
| 1 | 2 | 3 | | 1 | 2 | 3 |