Introduction
This is our first post on the research blog. It demonstrates all the content types we support.
Math Equations
Inline math works like this: the famous equation relates energy and mass.
Display equations are also supported:
The softmax function is defined as:
Code Examples
Here is a Python function:
def attention(Q, K, V):
d_k = Q.shape[-1]
scores = Q @ K.transpose(-2, -1) / d_k ** 0.5
weights = torch.softmax(scores, dim=-1)
return weights @ VAnd some TypeScript:
interface Post {
title: string
date: string
author: string
content: string
}Images
Below is a placeholder image for testing:

Blockquotes
"The only way to do great work is to love what you do."
Lists
Key findings from our research:
- Attention mechanisms scale quadratically with sequence length
- Sparse attention patterns can reduce this to linear complexity
- The trade-off between accuracy and efficiency depends on the task
- First, compute query and key projections
- Then, calculate attention scores
- Finally, apply softmax and multiply by values
Conclusion
This post confirms that all content types render correctly on our blog.