TEST BLOG
this is tes
1 min read
testing hereby.
Main Title
Introduction
This is a sample Markdown (.md) document containing commonly used Markdown elements.
1. Headings
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
2. Text Formatting
Bold Text
Italic Text
Bold and Italic Text
Strikethrough Text
Inline Code
This is a blockquote.
3. Paragraph
This is a normal paragraph. Markdown allows you to write simple and clean formatted documentation.
This is another paragraph separated by an empty line.
4. Unordered List
- Item 1
- Item 2
- Item 3
- Sub Item 3.1
- Sub Item 3.2
5. Ordered List
- First Item
- Second Item
- Third Item
- Sub Item
- Another Sub Item
6. Checklist
- Completed Task
- Pending Task
- Another Task
7. Links
8. Image

9. Code
Inline Code
Use npm install to install dependencies.
Code Block
function helloWorld() {
console.log("Hello World");
}
helloWorld();