Closed TorbenKoehn closed 9 years ago
Currently, expanding an element inside an expanding element won't return the outdent to the correct parent anymore
nav: ul li: a(href='#') li: a(href='#') div
The div will be appended to the ul, while it should actually come right after it
div
ul
The Problem lies in the Tale\Jade\Parser in the handleIndent, handleNewLine, handleOutdent and handleSub methods.
Tale\Jade\Parser
handleIndent
handleNewLine
handleOutdent
handleSub
This has been fixed in #7
Currently, expanding an element inside an expanding element won't return the outdent to the correct parent anymore
The
div
will be appended to theul
, while it should actually come right after itThe Problem lies in the
Tale\Jade\Parser
in thehandleIndent
,handleNewLine
,handleOutdent
andhandleSub
methods.