fxbois / web-mode

web template editing mode for emacs
https://web-mode.org
GNU General Public License v3.0
1.63k stars 262 forks source link

Error in JSX when using self closing div tag #1308

Open jcubic opened 2 months ago

jcubic commented 2 months ago

Just got another bug with JSX:

function App() {
    return (
        <div>
        <div/>
        </div>
    );
}

The outer tags are white and the inner div is not indented.

Przechwycenie obrazu ekranu_2024-05-09_19-38-18

JSX is not HTML so all tags can be self-closing.