Basic cheat Sheet on Markdown

These are the basic elements that is supported by all markdown

  • HEADINGS

    There are different types of headings that is supported by markdown just like in HTML h1,h2...h6 tag

    • h1 (starting by " # " and then space)

    • h2 (starting by " ## " and then space)

    • h3 (starting by " ### " and then space)

  • Bold and Italic

    • bold text (using " ** ")
    • Italic text (using " * ")
  • Blockquote

    • I have used in all the above using " > "
  • Ordered List

    1. Here I am using ordered list by simply giving number " 1. "
    2. Don't know what to write.
  • Unordered List

    • This element is used in the above writing till ordered list
    • This is done by simply giving the " - "
  • code

    You can also write code in Markdown int a=5; int b=6; int sum= a+b; I am doing this by starting and ending the code with " ` "

  • link and image

    These are similar and a bit queer You can give link by simply using Square brackets [] for the text on which link will be applied and the target website will be in the Parentheses ()

    Here is the link learn more about Markdown Now for image you have to just put an " ! " in beginning. Syntax will be same as image but the content in the square bracket will be the alternative text and in the parentheses will the path or location of the image

    This is the image  Basic syntax

That's all for now

Happy learning