Example Markdown Post

Eliot GeversEliot Gevers
November 24, 2024

Introduction

This is a bold statement and this is italicized text.

Math Examples

Here's an inline equation: E=mc2E = mc^2

And a block equation:

fx=limh0f(x+h)f(x)h\frac{\partial f}{\partial x} = \lim_{h \to 0} \frac{f(x + h) - f(x)}{h}

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:

  1. First step
  2. Second step
    1. Sub-step A
    2. Sub-step B
  3. Third step

Table Example

FeatureDescription
MathSupports LaTeX
CodeSyntax highlighting
ImagesCustom sizing

Blockquote

This is an important note It can span multiple lines And provides emphasis

Horizontal line


That's all for this example!