```markdown # This is a sample page.
This document demonstrates how to format text in markdown.
* Lists can be created using asterisks or numbers. 1. Ordered lists are also supported.
You can also **bold** or *italicize* text.
## Headings
Headings are created using the hash symbol (`#`). The number of hashes indicates the heading level.
### Subheadings
This is a subheading.
---
Horizontal rules can be created using three or more hyphens.
**Tables**
| Header 1 | Header 2 | | :------- | :------- | | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |
**Code**
You can include inline code like this: `print("Hello, world!")`
```python def greet(name): print(f"Hello, {name}!") ```
**Links**
Here's a link to [Google](https://www.google.com).
**Images**
Here's a sample image:

---
This is the end of the sample markdown page. ```