Welcome to my completely awesome blog

This is a demonstration of how Astro natively supports Markdown.

Astro will automatically take this .md file inside the src/pages/blog/ directory and build it into a fully functional HTML page located at /blog/demo-post.

Features of Markdown

You can easily write formatted content:

Adding Images

You can use the standard Markdown syntax to add images! If you place an image in the src/assets/ directory, Astro will automatically optimize it, crop it, and compress it for you:

My awesome blog cover

Code Snippets

// You can even include syntax-highlighted code blocks!
const hello = "world";
console.log(hello);

Quotes

This is a blockquote. It’s great for quoting people or highlighting important information.

Enjoy creating more blog posts by just adding more markdown files to this folder!