Skip to content

22sujata8d/Markdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

🌟🌟Markdown🌟🌟

For learning .md way of writing things :)

Checkout online editor
StackEdit - In-browser Markdown Editor


Markdown
For heading-1 : # heading-1
                    or
                  heading-1
                  =========
For heading-2 : ## heading-2
                     or
                  heading-2
                  ---------
For heading-3 : ### heading-3 

💠 Image

Coding


MARKDOWN
For Image:  ![alt text](url-of-image or path-of-the-image)

💠 Paragraph text

BOLD TEXT

Italics

Practice makes everyone perfect.

Inline Code print("Hola!! Mucho Gusto")


Markdown
For bold text : **text**
For italics : *italic text*
For Quote : >Every dark cloud has a silver lining 
For inline code : `print("inline code")`

💠 Creating Lists

Unordered List

  • Python
  • Javascript
    • ReactJS
    • NodeJS

Markdown
For unordered lists : * Unordered list item 1
                      * Unordered list item 2
                      * Nested list item

Ordered List

  1. Create main-heading
  2. Create sub-heading 2.1. topic-1 2.2. topic-2

💠 Code Snippet

def wish_greeting(name, lang):
    if lang == "Spanish":
      print("Hola, Mucho Gusto "+name)
    elif lang == "English":
      print("Hello, Nice to meet you "+name)
    else:
      print("Lang not found in code")

Markdown
For code snippet :      Give four space and start writing the code.

💠 Tasks

  • ordered lists
  • section links
  • emojis
  • code snippets

Markdown
For tasks :     - [ ] task-1
                - [ ] task-2
                - [X] completed task 

💠 Table

Column1 Column2 Column3 Column4
01 02 03 04
11 12 13 14
21 22 23 24
Column1 Column2
01 02
11 12

Markdown
For tables:
          | Column1 | Column2   |
          |:--------|----------:|
          | 01      | 02        |
          | 11      | 12        |

💠 Links


Markdown 
For Links/Url :
               For linking text to a url : [text](url-of-the-page)
               For direct links : <url-of-the-page>

💠 References :


About

For learning .md way of writing things :)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published