This repl is for describing Markdown language . All the information on markdown language that I know are explained here.
Also this read.md file is written in markdown language too. This is my code link.
- Heading
- Quote
- Comment
- Italic/bold alphabet
- Strikethrough
- Underline Text
- Centered text
- Adding link
- Image
- Header link
- List
- Table
- Code block
- Horizontal rule
- New line
- Emoji
-
# For H1 heading ## Fr H2 heading ### For H3 heading #### For H4 heading
-
>sign is used for quote.>>is used for nested quote. -
Syntax for comment: <!--- This is a comment --->
-
<!-- Markdown syntax --> _Italic_ **Bold** __Bold__ ***Italic & Bold***
Preview:Italic Bold Bold Italic & Bold -
<!-- Markdown Syntax --> ~~This text is strikethrough~~
Preview:This text is strikethrough -
<!-- Markdown Syntax --> <ins> Text </ins>
Preview:" This is an underlined text " -
<!-- Syntax ---> <div align="center"> A piece of centered text</div>
Preview:A piece of centered text 😄 -
- Automatic Link :
/// Directly add Link. It will be auto genarated.Preview:www.facebook.com - Disable Link :
/// To disable a link,write the link inside 2 backtic symbol (`) `www.facebook.com`
Preview:www.facebook.com- Markdown Link :
<!-- Markdown syntax --> [Code link](www.Link.com)
Preview:Code link - Automatic Link :
-
<!-- Markdown syntax --> 
<!-- HTML syntax --> <img src ="./Folder_name/File_name" width = "200" title = "Alt text"/>
Preview (Markdown):
Preview (HTML):
-
<!-- Markdown syntax --> [Text](#Header-file-name) ///For space inside header file name - use hyphen. Example: [Table of contents](#table-of-contents)
Preview :Clicking on Table of Contents will take you to the "Table of contents" header of this page. -
-
Ordered List
<!-- Markdown syntax --> 1. one 1. two 1. three
Preview:- one
- two
- three
-
Unordered List :
<!-- Markdown syntax --> - Part1 - part2 - part3
Preview:- Part 1
- part 2
- part 3
-
Task list :
<!-- Markdown syntax --> - [x] Topic 1 - [x] Topic 2 - [ ] Topic 3
Preview:- Topic 1
- Topic 2
- Topic 3
-
-
<!-- Markdown syntax --> | Name | Email | Comments | | --- | --- | --- | | Put your Name Here | Put email here |
Preview:Name Email Comments Abdullah Al Maruf aamaruf2000@gmail.com Mahdi Hasan the.madhi.hasan@gmail.com Put your Name Here Put email here -
-
Inline code block:
<!-- Markdown syntax --> `pritnf("hello world");` ///write code inside 2 backtick symbol
Preview:->pritnf("hello world"); -
Multiple Line code block:
<!-- Markdown syntax --> ```c //starting with 3 backtick + Programming language name (optional) code ``` //ending with 3 backtick
Preview:///Preview: #include<stdio.h> void main() { printf("Hello world\n"); }
-
-
<!-- Markdown syntax --> --- /// For Horizontal rule give 3 Hyphen Like this --- ---
-
Hello!<br>How are you? // Use <br> for Line break
preview:
Hello!
How are you? -
use :emoji_Name: syntax for emoji or you may direct copy & paste it
preview:
🇧🇩 ❤️ 🐯