Example Post: Writing Features
A showcase of formatting features available for blog posts.
Welcome to the Blog
This is an example post showing the features available for writing.
Basic Formatting
You can use bold text, italic text, and bold italic together.
You can also use strikethrough for deleted content.
This is a blockquote. Great for highlighting quotes or important notes. It can span multiple lines.
Code Blocks
Inline code looks like const x = 42 within text.
For larger code blocks with syntax highlighting:
// TypeScript example
interface User {
name: string;
age: number;
}
function greet(user: User): string {
return `Hello, ${user.name}!`;
}
# Python example
def fibonacci(n):
if n <= 0:
return []
fib = [0, 1]
for _ in range(2, n):
fib.append(fib[-1] + fib[-2])
return fib[:n]
Lists
Unordered lists:
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered lists:
- First step
- Second step
- Third step
Links and Images
Here is a link to Google.
Images work like this:

Tables
| Feature | Supported | Notes |
|---|---|---|
| Bold | Yes | Use asterisks |
| Italic | Yes | Use underscores |
| Code | Yes | Fenced blocks |
| Tables | Yes | This one! |
Conclusion
That covers the main features. Delete this example and start writing your own content!