Sample
October 1, 2025 · 5 min read
Sample Blog Post
This is a sample blog post content loaded from a markdown file.
Features
- Content is stored in
/public/blog/{slug}.md
- Metadata is stored in localStorage (from JSON initially)
- Supports full markdown syntax
Code Example
const loadBlogContent = async (slug) => {
const response = await fetch(`/blog/${slug}.md`);
return await response.text();
};
Math Support
You can write equations like inline or as blocks:
Conclusion
This system separates content from metadata, making it easier to manage blog posts.