Skip to content

Instantly share code, notes, and snippets.

@timothyclifford
Last active December 28, 2015 01:59
Show Gist options
  • Save timothyclifford/7424695 to your computer and use it in GitHub Desktop.
Save timothyclifford/7424695 to your computer and use it in GitHub Desktop.
Inconsistent spacing
// Bad
<%=GlassHtml.RenderImage(Model, x=>x.Header_Image,new ImageParameters{ Width= 853, Height =305,BackgroundColor="ffffff"},true)%>
// Good
<%= GlassHtml.RenderImage(Model, x => x.Header_Image, new ImageParameters { Width = 853, Height = 305, BackgroundColor = "ffffff" }, true) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment