Skip to content

Latest commit

 

History

History
136 lines (105 loc) · 2.54 KB

Markdown-Workbook.md

File metadata and controls

136 lines (105 loc) · 2.54 KB

Markdown Workbook

Welcome to this Markdown Workbook! This guide will help you learn and practice Markdown syntax.

Table of Contents

  1. Introduction
  2. Headings
  3. Text Formatting
  4. Lists
  5. Links & Images
  6. Code Blocks
  7. Tables
  8. Blockquotes
  9. Tasks
  10. Conclusion

Introduction

Markdown is a lightweight markup language used for formatting plain text. It is widely used in documentation, blogging, and note-taking.

Headings

Use # symbols to create headings:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Exercise: Create a heading structure that includes all six levels.

Heading

text

text

Text Formatting

  • Bold: **bold text**
  • Italic: *italic text*
  • Strikethrough: ~~strikethrough~~
  • Inline Code: `inline code`

Exercise: Format the sentence below in bold, italic, and strikethrough styles:

Markdown is a powerful tool!

Bold Italics DONE command.sh

Lists

Unordered List:

- Item 1
- Item 2
  - Subitem 1
  - Subitem 2

Ordered List:

1. First item
2. Second item
   1. Subitem A
   2. Subitem B

Exercise: Create a list of your three favorite activities, using both ordered and unordered lists.

  1. YouTube
  2. Codeing
  3. Sleeping

Links & Images

Links:

`` OpenAI


### Images:
```md
![Alt text](https://via.placeholder.com/150)

Exercise: Add a link to your favorite website and an image of your choice.

Code Blocks

Use triple backticks (print("Hello") ) to create code blocks:

print("Hello, world!")

Exercise: Write a simple Markdown code block for a Python print statement.

Tables

| Name  | Age | City     |
|-------|----:|----------|
| John  |  25 | New York |
| Sarah |  30 | London   |
| Mark  |  28 | Berlin   |

Exercise: Create a table with three rows and four columns.

Blockquotes

> This is a blockquote.
>> Nested blockquote.

Exercise: Write a motivational quote inside a blockquote.

Tasks

- [x] Complete this workbook
- [X] Practice more Markdown
- [X] Create my own Markdown project

Exercise: Add three new tasks to your list.

Conclusion

Congratulations! You have completed the Markdown Workbook. Keep practicing to master Markdown.


Want to Learn More?