# Main Title

## Introduction

This document has [links](https://example.com) and ![images](image.png).

### Features

- Item one
- Item two
- Item three

1. First ordered
2. Second ordered
3. Third ordered

> This is a blockquote

Here's some `inline code` for you.

---

## Code Section

```typescript
interface User {
  name: string;
  email: string;
}

const user: User = {
  name: "John",
  email: "john@example.com"
};
```

### Conclusion

This is the **end** of the ~~draft~~ document.

Check out [reference links][ref1] too.

[ref1]: https://example.com "Reference"
