---
title: "My Sample Markdown Article"
date: "2025-05-12"
author: "Markdown Writer"
tags: ["markdown", "conversion", "testing"]
slug: "my-sample-markdown-article"
summary: "This is a test article written in Markdown to be converted to Lemprenta format."
heroImage: "/images/markdown-hero.jpg"
draft: false
---

## Introduction to Markdown

This is a paragraph written in **Markdown**. It's quite easy to use.
This paragraph has an [inline link to Google](https://www.google.com) and also an image: ![A placeholder alt text](/images/placeholder-md.jpg).

Another paragraph for testing.

### Subheading Here

* Unordered list item 1
* Unordered list item 2
    * Nested item (Note: our simple converter might not handle nesting perfectly into Lemprenta list items without more complex logic for list token depth)
* Item with a [link inside](https://example.com)

1.  Ordered list item A
2.  Ordered list item B

> This is a blockquote.
> It can span multiple lines.

```javascript
function greet(name) {
  console.log(`Hello, ${name}!`);
}
greet("Markdown User");
```

---

That's all for this sample Markdown file!
```