# Test Markdown

This is a test document to verify debug functionality.

## Lists and Code

- Item 1
- Item 2

```javascript
console.log("hello");
```

### Links

Check this [link](https://example.com).

## Special Syntax

::: tip
This is a tip box
:::

Some math: $E = mc^2$

```python
def hello():
    print("world")
```
