msathyaanand / Markdown-Notes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Markdown Notes

This repository contains basics syntax of Markdown Language and learn how to use it 🔥


Basic Syntax

Headings

Below are 6 heading variations.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Horizontal Rule

3 dashes-> a horizontal line.


Text formatings

Paragraph line spacing is important. This sentence is on the same line even though it's on the next line of the editor because there's no separation of content.

Add an empty line between elements.

italic text and more italic text

bold text and more bold text

bold and italic text

mix and match

strikethrough text

Lists

Ordered List

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

Unordered List

  • Item
  • Item
  • Item

Code formating

Inline: Use JavaScript map() on arrays.

Fenced code block:

const sum = (a, b) => a + b

sum(2,2)

Blockquote

This is a blockquote

more text

Nested blockquote

Links

Sathya Github

Headings

Sathya Anand

Extended Syntax

Not all extended syntax features work in all markdown applications.

Table

Packages Description Version
React JavaScript Framework v18.0
Django Python Framework v12.0

Task List

  • Task 1
  • Task 2
  • Task 3

Emoji

Emoji's are fun! 🎉

Comments

Toggle

⚡ This is a toggle!

Contents of toggle.

Callouts

💡 Tip: Here's an important tip to remember!

Table of Contents

About