Markdown Syntax Guide
Admin•2026-01-03
markdownguideformatting
This post demonstrates various Markdown features.
Text Formatting
- Bold text using double asterisks
- Italic text using single asterisks
- Bold and italic using triple asterisks
Strikethroughusing double tildes
Lists
Unordered Lists
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered Lists
- First item
- Second item
- Third item
Code Blocks
Inline Code
Use console.log() for debugging.
JavaScript
const greeting = "Hello, World!";
console.log(greeting);
Python
def hello_world():
print("Hello, World!")
Bash
echo "Hello, World!"
ls -la
cd /home/user
Quotes
This is a blockquote. It can span multiple lines.
Links
Summary
Markdown is a simple yet powerful markup language!