Example Blog Post

less than 1 minute read

Published:

This is an example blog post. You can write anything here in Markdown!

How to Write Blog Posts

Blog posts are stored in the _posts/ directory. The filename format is important: YYYY-MM-DD-title.md

Formatting

You can use all standard Markdown:

Code Blocks

// Example STM32 GPIO code
GPIO_TypeDef *gpioa = GPIOA;
gpioa->ODR |= (1 << 5);  // Set pin 5 high

Lists

  • Point 1
  • Point 2
  • Point 3

Images

Alt text

Link to Google

Categories and Tags

Use the front matter (the section between --- at the top) to organize your posts with tags and categories.

Leave a Comment