Parser treats generic parameters in a generic model as html tag. Formatting cshtml file in Visual Studio 2012 (with Ctrl+K+D) changes generic parameter to lower case:
```
@model IEnumerable<Model.Content>
```
becomes:
```
@model IEnumerable<model.content>
```
So code could not be compiled any more. Also there is warning on a generic model declaration:
```
Validation (HTML5): Element 'model.content' is not supported.
```
```
@model IEnumerable<Model.Content>
```
becomes:
```
@model IEnumerable<model.content>
```
So code could not be compiled any more. Also there is warning on a generic model declaration:
```
Validation (HTML5): Element 'model.content' is not supported.
```