Skip to content

sunsarav/Hello-World

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

Markdown Template Guide


Table of Contents

  1. Introduction
  2. Headers
  3. Formatting Text
  4. Lists
  5. Links and Images
  6. Tables
  7. Code Blocks
  8. Git Commands Section
  9. Conclusion

Introduction

Markdown is a lightweight markup language for creating formatted text using a plain-text editor. This guide covers common Markdown elements and how to use them.


Headers

Markdown uses # symbols for headers:

# H1
## H2
### H3
#### H4
##### H5
###### H6

Example:

H1

H2

H3


Formatting Text

  1. Bold: Use **Bold**Bold
  2. Italic: Use *Italic*Italic
  3. Strikethrough: Use ~~Strikethrough~~Strikethrough

Lists

Unordered List:

- Item 1
- Item 2
  - Sub-item
  • Item 1
  • Item 2
    • Sub-item

Ordered List:

1. First Item
2. Second Item
  1. First Item
  2. Second Item

Links and Images

[Link Text](https://example.com)
![Image Alt Text](https://placehold.co/150)

Link Example
Image Example


Tables

| Column 1 | Column 2 | Column 3 |
|----------|-----------|----------|
| Data 1   | Data 2    | Data 3   |
Column 1 Column 2 Column 3
Data 1 Data 2 Data 3

Code Blocks

Inline code: `code`code

Block of code:

def hello_world():
    print("Hello, world!")

Git Commands Section

Basic Git Commands

# Initialize a repository
git init

# Add files to the staging area
git add .

Conclusion

Markdown is a simple, flexible, and powerful language for creating documents and content. Use this template as a reference or guide for your Markdown projects.


Markdown Tips:

  • Bold Text: **Bold**
  • Italic Text: *Italic*
  • Inline Code: `Code`
  • Hyperlink Example Edited by Shamu

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors