Markdown Cheatsheet for you ๐Ÿง

Markdown Cheatsheet for you ๐Ÿง

Styles that attract

ยท

2 min read

Let's Get to the Code with steps to create a professional guideline about your repos on Git.

Input:

[My Project]('http://google.com') - A new era of web 
***  //creates underline

Output:

My Project - A new era of web


Let's set some Guidelines

## Guidelines Here in Heading Size 2
 Your normal paragraph can be written without any special symbols
 or characters.

 The text color should be `#242B2E` for the light theme and `#0d1117` for the dark mode.

 Also Here are List of items:

 1. [Getting Ready](http://google.com/ready "Title on Hover")
 1. Automatically Corrects the bullet numbering
    1. My Sublist Item Level 1
       - I can go even deep nested with another list type
        - Go Even Deeper ๐Ÿคฉ

we make text **bold **

italicized them with *hmm*  or  _aha _

Offer Some Discounts ~~999~~ now $333 with strikes

Output:

Guidelines Here in Heading Size 2

Your normal paragraph can be written without any special symbols or characters.

The text color should be #242B2E for the light theme and #0d1117 for the dark mode.

Also Here are List of items:

  1. [Getting Ready](google.com/ready "Title on Hover")
  2. Automatically Corrects the bullet numbering
    1. My Sublist Item Level 1
      • I can go even deep nested with another list type
        • Go Even Deeper ๐Ÿคฉ

we make text bold

italicized them with hmm or aha

strikes on text.png


References to codes

 ### References to `codes` Heading Level-3 (###)

Output:

References to codes Heading Level-3 (###)


Now let's Try some codes written in popular Languages

JavaScript

```js
const anArrowFunc = data => console.log('How are you Today', data);
anArrowFunc('Poor Grammer')
```       .

Output:

const anArrowFunc = data => console.log('How are you Today', data);
anArrowFunc('Poor Grammer')

Python

```python
print("Hello Python")
```       .

Output:

print("Hello Python")

Lastly maybe json

```json
{
  'name': 'json-data',
  '/some/data/path': true,
  'an-array':[data1, cool],
  toString(){
      return  `name: ${this.name} looks good`
  }
}
```       .

Output:

{
  'name': 'json-data',
  '/some/data/path': true,
  'an-array':[data1, cool],
  toString(){
      return  `name: ${this.name} looks good`
  }
}

Time for Some Img Local and imports

This is the same as Links just an ! would do all for you

```                                                                                           . 
![MarkDown Cover.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658594642543/tYh5KwWEa.png align="left")

![Local Image Alt Text](./some/custom/path/to/local)


```                                                                                              .

Output:


MarkDown Cover.png


Local Image Alt Text


Finally let's Quote things up ๐Ÿค๐Ÿค

 > Thank You For All You Love Support and **Suggestions ** ๐Ÿ™Œ 
 <sub>๐Ÿ‘๐Ÿ‘๐Ÿ‘</sub>

Output:

Thank You For All You Love Support and Suggestions ๐Ÿ™Œ

๐Ÿ‘๐Ÿฝ๐Ÿ‘๐Ÿฝ๐Ÿ‘๐Ÿฝ

Did you find this article valuable?

Support Gautam Nath by becoming a sponsor. Any amount is appreciated!

ย