Project

General

Profile

Task #102101

Updated by Markus Klein 7 months ago

This TS used to work as an assignment: 

 <pre> 
 lib.nav.wrap =<ul id="nav">|</ul> 
 </pre> 

 With v12 this is now leading to invalid HTML output. 
 Most likely "=<" is now identified as a reference operator. 

 Since this is much more readable: 

 <pre> 
 lib.nav.wrap = <ul id="nav">|</ul> 
 </pre> <pre> 

 I suggest to document this edge case as a breaking change. 

Back