Test Post
This is a placeholder blog post demonstrating the use of Markdown with MathJax for mathematical expressions and code blocks. Below, you'll find examples of inline math, block math, and a code snippet.
MathJax Examples
Inline math can be used for simple equations, such as Einstein's formula: $E = mc^2$.
For more complex expressions, block math is ideal. Here's the integral of a function:
$$ \int_a^b f(x) , dx = F(b) - F(a) $$
Where $F$ is the antiderivative of $f(x)$.
Code Block Examples
Here's a simple Python code block that prints a message:
def greet(name):
return f"Hello, {name}!";
print(greet("World")) # Output: Hello, World!
Last updated: