Skip to content

aa-maruf/Markdown-Language

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🖐️ Hellooo! Welcome to markdown language tutorial

Description

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.

Note: .md means markdown documents. Markdown Language also supports some HTML syntaxes


Table of Contents:

  1. Heading
  2. Quote
  3. Comment
  4. Italic/bold alphabet
  5. Strikethrough
  6. Underline Text
  7. Centered text
  8. Adding link
  9. Image
  10. Header link
  11. List
  12. Table
  13. Code block
  14. Horizontal rule
  15. New line
  16. Emoji

  • Heading

      #  For H1 heading
      ##  Fr H2 heading
      ###  For H3 heading
      ####  For H4 heading
  • Quote

    > sign is used for quote.

    >> is used for nested quote.

  • Comment

        Syntax for comment:
       <!--- This is a comment --->
  • Italic/bold / Italic & bold

       <!--   Markdown syntax    -->
    
     _Italic_
    
     **Bold**
    
     __Bold__
    
     ***Italic & Bold***

    Preview: Italic Bold Bold Italic & Bold

  • Strikethrough

    <!-- Markdown Syntax -->
        ~~This text is strikethrough~~

    Preview: This text is strikethrough

  • Underline text

    <!-- Markdown Syntax -->
     <ins> Text </ins>

    Preview: " This is an underlined text "

  • Centered text

        <!-- Syntax --->
        <div align="center"> A piece of centered text</div>

    Preview:

    A piece of centered text 😄

  • Adding link

    • 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

  • Image Link

      <!--   Markdown syntax    -->
      ![Alt text](./Folder_name/File_name)
     <!--   HTML syntax    -->
     <img src ="./Folder_name/File_name" width = "200" title = "Alt text"/> 
    Preview (Markdown):

    Markdown Demo

    Preview (HTML):
  • Header Link

    <!--   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.

  • List

    • Ordered List

       <!--   Markdown syntax    -->
        1. one
        1. two
        1. three

      Preview:

      1. one
      2. two
      3. 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
  • Table

        <!--   Markdown syntax    -->
        
       | Name | Email | Comments |
       | --- | --- | --- |
       | Put your Name Here | Put email here |
       

    Preview:

    Name Email Comments
    Abdullah Al Maruf [email protected]
    Mahdi Hasan [email protected]
    Put your Name Here Put email here
  • Code block

    • 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");
          }
          
  • Horizontal rule

    <!--   Markdown syntax    -->
    ---
        /// For Horizontal rule give 3 Hyphen Like this  ---
    ---
  • New line

         Hello!<br>How are you?
         // Use <br> for Line break

    preview:
    Hello!
    How are you?

  • Emoji

        use  :emoji_Name: syntax for emoji
        or you may direct copy & paste it

    preview:
    🇧🇩 ❤️ 🐯


Thank you 🙂

About

This repl is about markdown language.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published