Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

hritik5102/Markdown-language-Tutorial

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
14 Commits
 
 
 
 
 
 

Repository files navigation

Markdown language basic

Table of Contents

Heading

# Apple 1
## Apple 2
### Apple 3
#### Apple 4
###### Apple 5

(Back to Top)

Emphasis

*italic*
_italic_

**bold**
__bold__

***bold italic***
___bold italic___

~~strikethrough~~

(Back to Top)

Horizontal-rule

----
**** 

(Back to Top)

Blockquote

This is a blockquote

Nested Blockquote

> This is
> a blockquote
>
> > Nested
> > Blockquote

(Back to Top)

Code

      // Ordering operators
      var a = 10;
      var b = 2;
      console.log("a less than 10? ", a < 10);
      console.log("a equal to 10", a === 10);
      console.log("a greater than 10? ", a > 10);

Syntax :

(Back to Top)

Link

Hritik Jaiswal

[Hritik Jaiswal](https://linktr.ee/hritikdj "hritik")<br/>

(Back to Top)

Unorder-list

  • item 1
  • item 2
  • item 3
    • nested item 1
    • nested item 2
* item 1
* item 2
* item 3
  * nested item 1
  * nested item 2

(Back to Top)

Order-list

  1. item 1
  2. item 2
  3. item 3
  4. item 4
1. item 1
2. item 2
3. item 3
4. item 4

(Back to Top)

Image

markdown logo

![markdown logo](pexels9.jpeg "books")

(Back to Top)

GIF

![](giphy.gif "Iron Man")

(Back to Top)

Tables

Name Email
John John@gmail.com
Sophia Sophia@gmail.com
| Name    | Email       |
|---------| ----------  |
| John  | John@gmail.com|
| Sophia  | Sophia@gmail.com|

(Back to Top)

Task-list

  • task 1
  • task 2
* [x] task 1
* [ ] task 2 
 _____ _                 _     __   __            
|_   _| |               | |    \ \ / /            
  | | | |__   __ _ _ __ | | __  \ V /___  _   _   
  | | | '_ \ / _` | '_ \| |/ /   \ // _ \| | | |  
  | | | | | | (_| | | | |   <    | | (_) | |_| |  
  \_/ |_| |_|\__,_|_| |_|_|\_\   \_/\___/ \__,_| 

(Back to Top)

About

Just a basic syntax of markdown language i.e .md you can run the code directly into any editor like VS code

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Morty Proxy This is a proxified and sanitized view of the page, visit original site.