This is just a trivial annoyance and by no means a major issue, but when using the bundling feature of ASP.NET MVC 4 the output contains minimal white space. eg
Rendered manually:
<head>
<title>Example page</title>
<meta name="example" content="blah blah"/>
<meta name="example2" content="blah blah"/>
<link href="/css1.css" rel="stylesheet"/>
<link href="/css2.css" rel="stylesheet"/>
<link href="/css3css" rel="stylesheet"/>
<script src="/script1.js"></script>
<script src="/script2.js"></script>
<script src="/script3.js"></script>
<link rel="shortcut icon" href="/favicon.ico">
</head>
<body>
....
Rendering links and stylesheets wtih bundling:
<head>
<title>Example page</title>
<meta name="example" content="blah blah"/>
<meta name="example2" content="blah blah"/>
<link href="/css1.css" rel="stylesheet"/>
<link href="/css2.css" rel="stylesheet"/>
<link href="/css3css" rel="stylesheet"/>
<script src="/script1.js"></script>
<script src="/script2.js"></script>
<script src="/script3.js"></script>
<link rel="shortcut icon" href="/favicon.ico">
</head>
<body>
....
At the end of the day it's just whitespace and doesn't affect the user experience but the perfectionist in me still cringes when I see it. How can I, for example, force each item output by bundling to be prefixed with an arbitrary number of tabs?