Breathe life back into your code. Focus on logic, not brackets.
HTML can be verbose. Between <div>, <span>, and nested components in Vue/JSX, the angle brackets (< >) often create โvisual noiseโ that makes it harder to scan the actual content and structure of your app.
Untangled HTML is a high-performance VS Code extension that gives you a โZen Modeโ for your markup. With one command, you can hide all angle brackets, leaving a clean, readable structure that feels more like Python or Stylus, while keeping your code perfectly valid.
| Feature | Standard View | Untangled View |
|---|---|---|
| Clutter | Heavy angle brackets < > / |
Clean, focused text |
| Readability | Distracting syntax | Component-first focus |
| Workflow | Standard editing | Rapid scanning & review |
.html, .vue, .jsx, and .tsx.<section class="hero">
<div class="container">
<h1>Welcome to Untangled</h1>
<p>Visual noise is gone.</p>
</div>
</section>
section class="hero"
div class="container"
h1 Welcome to Untangled h1
p Visual noise is gone. p
div
section
Note: The extension only affects visibility in the editor. Your files remain 100% valid HTML/Vue/JSX on disk.
Ctrl+Shift+X to open the Extensions view.Ctrl+Shift+P / Cmd+Shift+P).Ctrl+Alt+H) for even faster toggling!We love community involvement!
Distributed under the MIT License. See LICENSE for more information.
Made with โค๏ธ by Rahul Dhole