Example Markdown Post
Eliot Gevers
Example Markdown Post
Eliot Gevers
•November 24, 2024Introduction
This is a bold statement and this is italicized text.
Math Examples
Here's an inline equation:
And a block equation:
Inline code
You can also use inline code
for short code snippets.
Code block
def calculate_fibonacci(n):
if n <= 1:
return n
return calculate_fibonacci(n-1) + calculate_fibonacci(n-2)
Hidden text
This is some text
Lists
Here are some key points:
- First point
- Second point
- Nested point
- Another nested point
- Third point
Ordered list:
- First step
- Second step
- Sub-step A
- Sub-step B
- Third step
Table Example
Feature | Description |
---|---|
Math | Supports LaTeX |
Code | Syntax highlighting |
Images | Custom sizing |
Blockquote
This is an important note It can span multiple lines And provides emphasis
Horizontal line
That's all for this example!