From 3ba3b5e40feb8cfa112a2c258cad8f6751aa92b6 Mon Sep 17 00:00:00 2001 From: Petra Donka Date: Tue, 12 May 2026 15:23:06 +0200 Subject: [PATCH] fix: replace broken tags with markdown images on Universal Input page The 4 auto-detection images were referenced via raw 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 --- .../docs/terminal/input/universal-input.mdx | 24 ++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/content/docs/terminal/input/universal-input.mdx b/src/content/docs/terminal/input/universal-input.mdx index 8619acb4..591ba9d2 100644 --- a/src/content/docs/terminal/input/universal-input.mdx +++ b/src/content/docs/terminal/input/universal-input.mdx @@ -72,9 +72,15 @@ _Indicator_: Neither mode highlighted. When Warp detects an input type, the input switcher softly highlights the corresponding mode. -| Agent (natural language) mode detected | Terminal (shell) mode detected | -| ----------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| Universal Input auto-detecting a natural-language Agent prompt. | Universal Input auto-detecting a shell command. | +
+![Universal Input auto-detecting a natural-language Agent prompt.](../../../../assets/terminal/auto-detection-agent-mode-1.png) +
Agent (natural language) mode detected.
+
+ +
+![Universal Input auto-detecting a shell command.](../../../../assets/terminal/auto-detection-terminal-mode.png) +
Terminal (shell) mode detected.
+
:::note 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 * `CMD+I` (macOS) * `CTRL+I` (Windows/Linux) -| Agent (natural language) mode enabled | Terminal (shell) mode enabled | -| -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| | | +
+![Universal Input with auto-detection off in Agent Mode.](../../../../assets/terminal/auto-detection-off-agent-mode.png) +
Agent (natural language) mode enabled.
+
+ +
+![Universal Input with auto-detection off in Terminal Mode.](../../../../assets/terminal/auto-detection-off-terminal-mode.png) +
Terminal (shell) mode enabled.
+
### Entering Agent Mode