Introduction
The blog system has been upgraded to make technical posts cleaner, clearer, and more enjoyable to read.
It supports better code blocks, native tables, and full LaTeX support — all rendered directly from MDX.
Possible thanks to next-mdx-remote-client, with plugins
of rehype plugins alongside some customization.
Tables Support
| Item | Category | Value | Rating |
|---|---|---|---|
| Clockwork Owl | Gadgets | 73 | ★★★★☆ |
| Lunar Tea Leaves | Consumables | 18 | ★★★☆☆ |
| Neon Paper Clips | Office Stuff | 42 | ★★★★★ |
| Pocket Sundial | Curiosities | 55 | ★★★☆☆ |
| Floating Bookmark | Miscellaneous | 29 | ★★★★☆ |
Code blocks (with line numbers & highlights)
function fibonacci(n) {
if (n <= 1) return n;
let a = 0, b = 1;
for (let i = 2; i <= n; i++) {
[a, b] = [b, a + b];
}
return b;
}Math & LaTeX
Inline math works naturally, for example:
Standalone equations:
This makes it easy to write about algorithms, math, or anything slightly more formal without hacks.