Skip to content

archismansaha/markdown-cheatsheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 

Repository files navigation

#Welcome , Here is a cheatsheet for markdown language.

Heading:

syntax: #    heading 1 
syntax: ##   heading 2 
syntax: ###  heading 3 
syntax: #### heading 4

Output:


heading1

heading2

heading3

heading4


bold and italic

syntax: **text to bold**

syntax: *text to italic*

Output:


text to bold

text to italic


task list:



syntax: - [x] task 1
        - [ ] task 2 

Output:

  • task 1
  • task 2

Ordered and unordered lists:

syntax:  - text to be in unorederd list
syntax:  1.  text to be in ordered list
            2. text to be in ordered lists.

You can make nested ordered and unordered list:
- text 1
    - text 2

1. text 1 
    2.text 2 

2. text 1 
     - text 2


Output:


  • text to be in unorederd list
  1. text to be in ordered list
  2. text to be in ordered lists.
  • text 1
    • text 2
  1. text 1

    1. text 2
  2. text 1

    • text 2

Blockqoutes:

> this is a single block quote.
>> nested block quote.

Output:


this is a single block quote.

nested block quote.


Code Blocks :

synatx: ``` code ```
``` (write code in next line) print("Have a great day") ```

Output:


print("Have a great day")


Adding links:

synatx: [name of the text] (link)
[Linkedin](https://www.linkedin.com/in/archisman-saha-596615212/)

Adding title to link(this will display when we hover on it):
[Linkedin](https://www.linkedin.com/in/archisman-saha-596615212/ "This is title")

Links formating :

Italic: *[Linkedin](https://www.linkedin.com/in/archisman-saha-596615212/ )*
Bold:  **[Linkedin](https://www.linkedin.com/in/archisman-saha-596615212/ )** 

Output:


Normal link: Linkedin

Adding title: Linkedin

Italic: Linkedin

Bold: Linkedin


Emails and Urls:

< Urls >
Example: <https://github.com/archismansaha>
< emails >
Example: <[email protected]>

Output:


Example of link: https://github.com/archismansaha

Example of email: [email protected]


Adding Image:

syntax: ![image name](image address)

Example: ![have a look](https://cdn.shopify.com/s/files/1/0070/7032/files/Fearless_Motivational_Quote_Desktop_Wallpaper_1.png?format=jpg&quality=90&v=1600450412)

Output:


Example:

have a look


Table:

| text        | Description |
| ----------- | ----------- |
| text1       | Text 4      |
| text2       | Text 3      |


Output:

text Description
text1 Text 4
text2 Text 3

Emoji:

Syntax:  :short code:
Example : :blush:

For icon:

<a href= "destination address"><img src="icon link"></a>
<a href = "https://www.linkedin.com/in/archisman-saha-596615212/"><img src="https://img.icons8.com/fluent/48/000000/linkedin.png"/></a>

Output:


Example: :blush:

Icon:

Here is a complete list of emoji shortcodes: https://gist.github.com/rxaviers/7360908


If you like it dont forget to star it and do connect in :

Here is a online markdown editor you can try :


markdown-editor made by Rwitesh

If you want contribute to the markdown-editor here is the repository link

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published