Your Second Blog Post in Eleventy
Published on May 16, 2025
Welcome to your first post! Here’s a showcase of all the basic elements you can use in your Markdown-based blog.
Headings
Use #, ##, ###, etc. for headings.
Subheading
This is a paragraph under a subheading.
Images
Local image (stored in /img/)

Image with alt and title

Code
Inline code looks like this.
Block code (JavaScript)
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("Eleventy");
Blockquote
“The simplicity of Markdown paired with Eleventy is unbeatable.” — A developer
Links
External link
Check out the Eleventy documentation.
Internal link
Read our about page to learn more.
Lists
Unordered list
- Easy to write
- Easy to read
- Converts to
<ul>
Ordered list
- First item
- Second item
- Third item
Table
| Feature | Description | Available |
|---|---|---|
| Markdown | Easy formatting | ✅ |
| Code blocks | Great for dev-focused content | ✅ |
| Images | Embed locally or externally | ✅ |
Horizontal Rule
Thanks for reading! 🎉
You can also explore the next post when it's ready.