Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
@@ -0,0 +1,67 @@
# Markdown Image Test
This file tests various ways to include images in markdown.
## Sample JPG Images
Here's a 400x300 sample image:
![Sample Image 1](./sample1.jpg)
Here's a larger 600x400 sample:
![Sample Image 2](./sample2.jpg)
## PNG Image
A square 300x300 PNG:
![Sample PNG](./sample3.png)
## Multiple Images
Let's show multiple images in sequence:
![Sample 1](./sample1.jpg)
![Sample 2](./sample2.jpg)
![Sample 3](./sample3.png)
## Image in a List
Here's a bulleted list with images:
- First item
- ![Inline image in list](./sample1.jpg)
- Third item
## Parent Directory Reference
Here's an image from the parent directory:
![Parent directory image](../parent_test.jpg)
## Absolute Path
You can also use absolute paths (though they're less portable):
![Absolute path](/Users/zach/Projects/warp/editor/test_fixtures/images/sample2.jpg)
## Empty Alt Text
![](./sample3.png)
## Text After Images
Here's some regular text after an image. The image should be rendered inline with the text flow.
![Sample](./sample1.jpg)
This text comes after the image.
---
## End of Test
That covers the basic image rendering scenarios!