Skip to content

Commit 4b89e46

Browse files
petradonkaoz-agent
andauthored
fix: replace broken <img> tags with markdown images on Universal Input page (#65)
The 4 auto-detection images were referenced via raw <img src> HTML tags inside markdown tables. Astro's image pipeline doesn't process these, so they resolved to 404s on the live site. Replaced with standard markdown image syntax that Astro handles correctly. Co-authored-by: Oz <oz-agent@warp.dev>
1 parent 98d22d7 commit 4b89e46

1 file changed

Lines changed: 18 additions & 6 deletions

File tree

src/content/docs/terminal/input/universal-input.mdx

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,15 @@ _Indicator_: Neither mode highlighted.
7272

7373
When Warp detects an input type, the input switcher softly highlights the corresponding mode.
7474

75-
| Agent (natural language) mode detected | Terminal (shell) mode detected |
76-
| ----------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
77-
| <img src="../../../../assets/terminal/auto-detection-agent-mode-1.png" alt="Universal Input auto-detecting a natural-language Agent prompt." data-size="original" /> | <img src="../../../../assets/terminal/auto-detection-terminal-mode.png" alt="Universal Input auto-detecting a shell command." data-size="original" /> |
75+
<figure>
76+
![Universal Input auto-detecting a natural-language Agent prompt.](../../../../assets/terminal/auto-detection-agent-mode-1.png)
77+
<figcaption>Agent (natural language) mode detected.</figcaption>
78+
</figure>
79+
80+
<figure>
81+
![Universal Input auto-detecting a shell command.](../../../../assets/terminal/auto-detection-terminal-mode.png)
82+
<figcaption>Terminal (shell) mode detected.</figcaption>
83+
</figure>
7884

7985
:::note
8086
The model Warp uses to detect natural language automatically is completely local.
@@ -89,9 +95,15 @@ By default, auto-detection is enabled. This means Warp decides whether to treat
8995
* `CMD+I` (macOS)
9096
* `CTRL+I` (Windows/Linux)
9197

92-
| Agent (natural language) mode enabled | Terminal (shell) mode enabled |
93-
| -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
94-
| <img src="../../../../assets/terminal/auto-detection-off-terminal-mode.png" alt="" data-size="original" /> | <img src="../../../../assets/terminal/auto-detection-off-agent-mode.png" alt="" data-size="original" /> |
98+
<figure>
99+
![Universal Input with auto-detection off in Agent Mode.](../../../../assets/terminal/auto-detection-off-agent-mode.png)
100+
<figcaption>Agent (natural language) mode enabled.</figcaption>
101+
</figure>
102+
103+
<figure>
104+
![Universal Input with auto-detection off in Terminal Mode.](../../../../assets/terminal/auto-detection-off-terminal-mode.png)
105+
<figcaption>Terminal (shell) mode enabled.</figcaption>
106+
</figure>
95107

96108
### Entering Agent Mode
97109

0 commit comments

Comments
 (0)