The ultimate guide to Markdown cheatsheet

The ultimate guide to Markdown cheatsheet

Markdown cheatsheet

Hello everyone,

In this article cum cheatsheet I am going to share some fundamental yet stunning ways
to use markdowns.

Markdowns are the best way to represent our work when it comes to the developers. Most of the developers prefer to remain silent and let our code do the talking.

This will help you to create stunning blogs or markdown documents. So, let's get started.

Basics

  • To implement headings use # & keep on increasing # to decrease the font.

heading1

heading2

heading3

heading4

heading5
  • To implement the Ordered List use Numbers

    1. Cricketers
      1. Virat Kohli
      2. MSD
    2. Footballers
      1. Messi
      2. Ronaldo
  • To implement Unordered List use -

  • Eat

  • Sleep
  • Code
  • Repeat
  • To implement Bold use **content**

  • To implement Italic use *content*

Blockquotes

Use > in a line line

I am a blockquote

Adding links

[content]("link_URL")

[Google](https://www.google.com)

Google

Writing Code

```my code goes here```

We can even write the name of the programming langauage

Just write the name of the language before writing the code

 let name = shaquib;
function myName(name){
  console.log(name);
}
myName();

Horizontal lines

Just use 3 times asterisk (***)

Notice the horizontal line below me


Adding Emojis

This is the most fun part we can use emojis to make our text more expressive

create any mascot or put the images like below but you should know the correct path.

![LCO](https://learncodeonline.in/mascot.png)

LCO

Creating the Tables

| Syntax | Desc |
| ------ | ------ |
| Header | Title |
| Para | Text |

SyntaxDesc
HeaderTitle
ParaText

That's all for today! You have reached the end of this article!