You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched Warp feature requests and there are no duplicates
I have searched Warp docs and my feature is not there
Describe the solution you'd like?
Warp's Markdown Viewer should support the common subset of raw inline HTML that real-world repo markdown relies on (this is standard practice under GitHub Flavored Markdown, and is what GitHub, GitLab, and most other markdown renderers already support). Today the viewer renders plain Markdown syntax reasonably well, but silently drops or ignores raw HTML tags, which breaks a lot of READMEs, docs, and notes that use HTML for layout control that Markdown syntax alone can't express.
Prioritized list of tags, most important first:
<img> with width / height / align — sizing control for images. This is the one that bit me directly (see repro below).
<a href="…"> and <a id="…"> — links, plus named anchors used as deep-link targets for hand-built tables of contents.
Tables: <table> / <thead> / <tbody> / <tr> / <th> / <td> — needed for cells that require a line break (<br>) or a colspan/rowspan, which Markdown table syntax cannot express at all.
<details> / <summary> — collapsible sections, extremely common in READMEs, changelogs, and bug-report templates (including this repo's own issue templates elsewhere on GitHub).
<br> — explicit line breaks, most often needed inside table cells.
<kbd> — keyboard-shortcut styling. Feels especially on-brand for a terminal app's own markdown viewer.
<sub> / <sup> — subscript/superscript.
<p align="center"> / <div align="center"> — centered "hero" headers, very common at the top of README files.
<picture> / <source media="(prefers-color-scheme: …)"> — light/dark logo variant swapping, standard pattern for README badges/logos.
I'd be happy to see this land as "the common subset above," even if full arbitrary-HTML rendering (with all its sanitization complexity) is out of scope.
Is your feature request related to a problem? Please describe.
I'm always frustrated when I write locally-generated SVG dashboards into my Markdown notes and Warp's viewer won't let me size them.
Concretely, today in Warp's Markdown Viewer (verified on this build):
Works, but not usefully — renders the image at a small fixed width that ignores the SVG's intrinsic width/height, and does not scale when the pane or document is resized:

Does not render at all (expected: image displayed at 90% of the pane width):
Since the Markdown-image renderer ignores the SVG's own intrinsic dimensions, the HTML width attribute is the only author-controllable sizing signal available — and Warp currently drops it, so there is no way to control image size at all short of re-encoding the SVG itself.
Two more everyday examples that currently don't render, both very common in repo docs:
<details><summary>Click to expand</summary>
Hidden content here, only shown when expanded.
</details>
Press <kbd>Cmd</kbd>+<kbd>K</kbd> to open the command palette.
Additional context
Motivating use case: I generate SVG dashboards locally (charts, funnels, etc.) and embed them in Markdown notes for later reference. Without HTML width/height support, there's no way to size these embedded charts sensibly inside the viewer.
Pre-submit Checks
Describe the solution you'd like?
Warp's Markdown Viewer should support the common subset of raw inline HTML that real-world repo markdown relies on (this is standard practice under GitHub Flavored Markdown, and is what GitHub, GitLab, and most other markdown renderers already support). Today the viewer renders plain Markdown syntax reasonably well, but silently drops or ignores raw HTML tags, which breaks a lot of READMEs, docs, and notes that use HTML for layout control that Markdown syntax alone can't express.
Prioritized list of tags, most important first:
<img>withwidth/height/align— sizing control for images. This is the one that bit me directly (see repro below).<a href="…">and<a id="…">— links, plus named anchors used as deep-link targets for hand-built tables of contents.<table>/<thead>/<tbody>/<tr>/<th>/<td>— needed for cells that require a line break (<br>) or acolspan/rowspan, which Markdown table syntax cannot express at all.<details>/<summary>— collapsible sections, extremely common in READMEs, changelogs, and bug-report templates (including this repo's own issue templates elsewhere on GitHub).<br>— explicit line breaks, most often needed inside table cells.<kbd>— keyboard-shortcut styling. Feels especially on-brand for a terminal app's own markdown viewer.<sub>/<sup>— subscript/superscript.<p align="center">/<div align="center">— centered "hero" headers, very common at the top of README files.<picture>/<source media="(prefers-color-scheme: …)">— light/dark logo variant swapping, standard pattern for README badges/logos.I'd be happy to see this land as "the common subset above," even if full arbitrary-HTML rendering (with all its sanitization complexity) is out of scope.
Is your feature request related to a problem? Please describe.
I'm always frustrated when I write locally-generated SVG dashboards into my Markdown notes and Warp's viewer won't let me size them.
Concretely, today in Warp's Markdown Viewer (verified on this build):
Works, but not usefully — renders the image at a small fixed width that ignores the SVG's intrinsic
width/height, and does not scale when the pane or document is resized:Does not render at all (expected: image displayed at 90% of the pane width):
Since the Markdown-image renderer ignores the SVG's own intrinsic dimensions, the HTML
widthattribute is the only author-controllable sizing signal available — and Warp currently drops it, so there is no way to control image size at all short of re-encoding the SVG itself.Two more everyday examples that currently don't render, both very common in repo docs:
Additional context
width/heightsupport, there's no way to size these embedded charts sensibly inside the viewer.0.2026.07.01.09.21.01on macOS27.0.Operating system (OS)
macOS
How important is this feature to you?
3