Introduction
Welcome to my first post! In this post, I will discuss various Markdown features and show you how to use them effectively.
Headings
You can use headings to structure your content. Here’s an example:
Subheading
Lists
Markdown supports both ordered and unordered lists. Here are examples of both:
- Item 1
- Item 2
- Item 3
- Unordered item 1
- Unordered item 2
- Unordered item 3
Links
You can create links to external websites or internal pages. Here’s an example:
Code Blocks
Markdown allows you to include code blocks. Here’s an example of a code block in JavaScript:
function greet(name) {
console.log("Hello, " + name + "!");
}
greet("John");