// blog_post_welcome-new-blog-system

Welcome to My New Blog System

2025-01-15
metapythonblogging

Welcome to My New Blog System

This is a sample blog post to demonstrate the new simple Python-based blog generator. The system is designed to be minimal yet powerful.

Features

  • Markdown Support: Write posts in simple Markdown format
  • Math Support: LaTeX math expressions like $E = mc^2$ are supported
  • Code Highlighting: Syntax highlighting for code blocks
  • Responsive Design: Looks great on all devices

Code Example

Here's a simple Python function:

def generate_blog_post(md_file, template_path, output_dir):
    """Generate a single blog post HTML file."""
    with open(md_file, 'r', encoding='utf-8') as f:
        content = f.read()

    # Process the content...
    return post_info

Math Example

The quadratic formula is:

$$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$

Conclusion

This new blog system is much simpler than Hugo while still providing all the essential features I need for technical blogging.