Eg- this piece of code from a valid angular template becomes error prone when converted to jade cause ngModel is converted to ngmodel
<div class="container">
<h1>User info</h1>
<form (ngSubmit)="onSubmit()">
<div class="form-group">
<label>User Email</label>
<input type="text" [(ngModel)]="email" ngControl="email" #spy="" required="" class="form-control"/>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
Eg- this piece of code from a valid angular template becomes error prone when converted to jade cause
ngModelis converted tongmodel