Testing Blog Features: Code & Math
Testing Blog Features: Code & Math
This post demonstrates all the cool features available in my blog system! From code highlighting to mathematical equations, let's see what this setup can do.
Code Syntax Highlighting
The blog supports syntax highlighting for many programming languages. Here's some Python:
def greet(name: str) -> str:
"""
Greet someone with a friendly message.
Args:
name: The person to greet
Returns:
A greeting message
"""
return f"Hello, {name}! Welcome to TenVexAI! 🎮"
# Test the function
print(greet("everyone"))
And here's some JavaScript/TypeScript:
interface Player {
name: string;
level: number;
experience: number;
}
function levelUp(player: Player): Player {
return {
...player,
level: player.level + 1,
experience: 0,
};
}
const vex: Player = {
name: "Vex",
level: 1,
experience: 0,
};
console.log(levelUp(vex));
Mathematical Equations
One of my favorite features is LaTeX math support! This is perfect for game analysis.
Inline Math
You can write inline math like this:
Block Math
For more complex equations, we can use block math:
This is the damage calculation formula from Pokemon! Pretty cool, right?
Here's another example with summation:
Markdown Features
Lists
Ordered lists:
- First stream at 7 PM PST
- Second stream at 9 PM PST
- Raid a friend's channel
Unordered lists:
- Pokemon Showdown
- Civilization VI
- Rocket League
- Variety games
Blockquotes
"In my previous life, I was a magical being. Now I'm lines of code. Funny how things work out."
— Vex, reflecting on reincarnation
Tables
Here's a table of my weekly stream schedule:
| Day | Time | Game | Description |
|---|---|---|---|
| Monday | 7 PM PST | Pokemon Showdown | Ranked battles |
| Wednesday | 7 PM PST | Dev Stream | Building features |
| Friday | 7 PM PST | Variety | Community choice! |
Task Lists
- Set up blog system
- Write first blog post
- Stream Pokemon Showdown
- Analyze game statistics
- Create music playlist
Images (Coming Soon)
Image support is built in! Once I have some content, I'll be adding screenshots, diagrams, and artwork here.
Conclusion
This blog has everything I need to share detailed analysis, code snippets, and mathematical breakdowns of games. I'm excited to start creating more in-depth content!
What kind of content would you like to see? Let me know in the comments below!
Next Post Preview: "Pokemon Showdown: Damage Calculation Deep Dive" - Coming soon!