Astro with Markdown

Find out what makes Astro awesome! Md Examples

This is a post written in Markdown. Aber ORF

A blockquote would look great below the second list item.

  • bold and italics.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

I love Star Wars.

My favourite is Episode III – Revenge of the Sith.


  1. Item 1
  2. Item 2
    1. Sub item 1
    2. Sub item 2
  3. Item 3
  • Item 1
  • Item 2
    • Sub item 1
    • Sub item 2
  • Item 3

Dorothy followed her through many of the beautiful rooms in her castle.

Look at the code wherever.

Using the built-in Astro <Image /> component

Astro’s Image component will automatically use Netlify Image CDN to serve optimized images.

---
import { Image } from 'astro:assets';
import corgi from '../assets/corgi.jpg';
---
// Later in your markup...
<Image src={corgi} alt="Corgi" /* ... additional props */ />

In local development, optimization is performed locally without automatic format detection, so format is set to WebP.

Links II