Markdown Cheatsheet

Photo by Jess Bailey on Unsplash

Markdown Cheatsheet

What is markdown?

Markdown is a plain text formatting syntax aimed at making writing for the internet easier. It is written entirely only using punctuation characters that are chosen carefully. we can add links, images, headings, Blockquote, code, horizontal line, make text bold, italic, strikethrough, and make ordered lists, unordered lists, etc.


Heading:

- Headings are from 1 to 6 & we can use as per our requirement.

O/p

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Images:

- For images the syntax is **![alt text](image url)**.

Blockcode:

  • The blockcode syntax is >.

    O/p

    stop


Inserting code:

  • The syntax of Inserting code is (``` ) on both side of words.

    O/p

    Separated from the heading text by a space character.
    

Horzontal line:

  • To use horizontal line write syntax ---------

    O/p


Bold:

  • Syntax for bold is Hello World .

    O/p

    Hello World

Italic:

  • Syntax for italic is ( * ) on both side of word.

    O/p

    Shift

Ordered List:

-Syntax for ol is : 1. 2.

O/p

1.Git 2.List

Unordered List:

  • Syntax for ul is : (-)

Example

  • Hello