# Additional Markdown Test

This is another markdown file to test direct access to `.md` files.

## Markdown Features

### Headers
All levels of headers work from H1 to H6.

### Text Formatting
- **Bold text**
- *Italic text*  
- `Inline code`
- ~~Strikethrough~~

### Lists

**Unordered:**
- Item 1
- Item 2
  - Nested item
  - Another nested item

**Ordered:**
1. First item
2. Second item
3. Third item

### Links and Images
[jsLightning on npm](https://www.npmjs.com/package/js-lightning)

### Code Blocks

```javascript
// Example JavaScript code
const express = require('express');
const app = express();

app.get('/', (req, res) => {
    res.send('Hello World!');
});
```

### Blockquotes

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

### Tables

| Feature | JavaScript | Markdown | HTML |
|---------|------------|----------|------|
| Dynamic | ✅ | ✅ | ❌ |
| Static | ❌ | ❌ | ✅ |
| Processing | Server-side | Server-side | Client-side |

---

**jsLightning now supports markdown files alongside JavaScript modules and static HTML!**