DEV Community

Cover image for Wanna Make Digital Notes Faster ?
Shubham
Shubham

Posted on • Updated on

Wanna Make Digital Notes Faster ?

I N T R O D U C T I O N πŸ‘‹


Do you wanna make Digital notes in a more effective way , or any kind of document in which you can put text , images , code and so on.
Markdown is a light weight markup language which can be used to format your elements in to heading or list item etc.
Used for taking notes m having basic & fast doc to refer , README file of github are markdown , so for being a developer you may need to to learn markdown once in your life span.

notes

S E T U P πŸ‘€

  • You can start with any markdown editing tool or website
  • You can even just start with your notepad.
  • write markdown code & save file with .md extension

S Y N T A X πŸ₯Έ

Simple text

# Biggest Heading
## Big Heading
### Heading

For horizontal line 

----

- list_Item
    + sub_list_Item with a **TAB**

_Italic-Font_
__Bold-Font__

> Block Quote

[LINK](url)

![alt_text](img_url)

<!-- comment : which ignored in your markdown render  -->

  '''extension

  code

  '''

| Column 1 | Column 2 |
| --- | --- |
| Table | with markdown |

Enter fullscreen mode Exit fullscreen mode

E X A M P L E

![cover](https://cdn.pixabay.com/photo/2018/04/07/08/28/notepad-3297994__340.jpg)

# Piyush Patil πŸ˜‰  

----

- A passionate __Web developer__ from India
- I’m currently working on `Vue JS`
- I’m currently _MongoDB_
- Fun fact I ~~Hate~~ Love Anime

| Name | Piyush PAtil |
| -- | -- |
| Age | 20 |
| Skill | Web Development |

## L A N G U A G E
- HTML
    - PUG
- CSS
    - SASS
- JS
- VUE
Enter fullscreen mode Exit fullscreen mode

CODE

   while(no Success){
       try Again();
       if (DEAD)
           break;
   }
Enter fullscreen mode Exit fullscreen mode
> Life would be much easier if I had the source code

######  - A N O N Y M O U S

---

## `HOPE YOU LIKE IT`

#### [insta 😁 ](https://www.instagram.com/z.e.n_____/)
#### [twitter 🐦 ](https://twitter.com/Piyush67372814)
#### [github πŸ‘Ύ  ](https://github.com/Piyush-linux)
Enter fullscreen mode Exit fullscreen mode

markdown

R E S O U R C E

Markdown Editor

Website

IDE Extension

You can also transform your IDE or text editior by installing required extension

B O N U S

This a little surprise πŸ˜ƒ , Hence we can make fast notes with markdown , we can also create a good PPT with help of markdown and a very rare website I've found on the internet called Play Presentation which makes your presentation edition time 3xFASTER

PRESENTA Playground! - Make slides fast!

Features

  • Support β‡’ Color , Font , image , emoji
  • Presentation β‡’ Trnsition , short cuts , external library for chart's & diagram availabe
  • Core β‡’ Easy to make & Manage

Complete tutorial is available on there website

Top comments (0)