This is a sample blog post written in Markdown. You can write your posts using Markdown syntax and they will be automatically converted to HTML.
Features
The website supports:
- Bold text and italic text
- Code blocks with syntax highlighting
- Math equations using LaTeX
- Tables
- Lists (ordered and unordered)
- Links and images
Code Example
Here's a Python code example:
def hello_world():
"""A simple hello world function"""
print("Hello, World!")
return True
if __name__ == "__main__":
hello_world()
Math Equations
You can write inline math: \(E = mc^2\)
Or display equations:
\[
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
\]
Tables
| Feature | Status |
|---|---|
| Markdown | ✓ |
| Syntax Highlighting | ✓ |
| Math Equations | ✓ |
| Tables | ✓ |
Lists
Unordered list:
- Item 1
- Item 2
- Item 3
Ordered list:
1. First item
2. Second item
3. Third item
That's it! Start writing your own posts in the content/posts/ directory.