Skip to content

Latest commit

 

History

History
157 lines (107 loc) · 2.83 KB

File metadata and controls

157 lines (107 loc) · 2.83 KB

Heading

Paragraphs

This is line one
Add two spaces (at the end of every line) to write in next line.

Leaving one line above.

<p> Written under backticks will display the text same </p>


Lists

Unordered Lists

  • List 1
  • List 2
  • List 3

Ordered Lists

  1. Item 1
  2. Item 2
  3. Item 3

Nested Lists

UL: Nested Lists

  • List 1
    • Nested list 1
    • Nested list 2
  • List 2
    1. Nested ol 1
    2. Nested ol 2
  • List 3

OL: Nested Lists

  1. Item 1
    • List 1
    • List 2
  2. Item 2
    1. OL 1
    2. OL 2
  3. Item 3

Links

click here


Images

Bunny Image(Alternate Text!)


Link Image

Bunny Ecom


BlockQuotes

This is blockquote

  1. Item 1
  2. Item 2

This is nested BlockQuote

  • List 1
  • List 2

Ending BlockQuotes


Tables

">https://tableconvert.com/markdown-generator-->
First Name Last Name
Bhanu Sunka
Bunny Tricky

Escape Sequences

# Heading not appearing right
- List not appearing right


Code Blocks

    var b = "hello"
    console.log(b);

Horizontal Line

Add three hyphen(-) to create horizontal line



Steps to convert Markdown file into html file

  1. Install node first in your system

  2. Then install markdown-it from your terminal.

     npm install -g markdown-it
  3. Now, convert markdown file into html

     markdown-it Filename.md -o NewFileName.html


Markdown Cheatsheet

That's it! kthnxbye 🚀