私は Umbraco 5 MVC3 プロジェクトを持っており、あちこちに空白があることを発見しました。調査したところ、Firefox Web 開発者ツールで「生成されたソースを表示」すると、HTML の見た目が非常に悪いことがわかりました。たとえば、doctype 宣言を削除し、メタタグなどを頭の外に移動します。簡略化されたコード:
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>@ViewBag.Title</title>
<link rel="stylesheet" href="@Url.Content("~/Content/Styles/style.css")"/>
</head>
<body id="" class="default">
<div id="wrapper">
<header id="banner" class="body">
<a class="ir logo" href="/"><h1>Christian </h1></a>
<ul class="share">
<li id="facebook"><a class="ir" href="http://www.facebook.com/sharer.php?u=@Request.Url.AbsoluteUri">Facebook</a></li>
<li id="twitter"><a class="ir" href="http://twitter.com/share?text=Christian">Twitter</a></li>
</ul>
@Html.Partial("nav")
</header>
<section id="content" class="body">
@RenderBody()
</section>
</div>
<script src="@Url.Content("~/Scripts/plugins.js")"></script>
<script src="@Url.Content("~/Scripts/script.js")"></script>
</body>
</html>
そして、出力は次のように始まります
<html class="no-js" lang="en"><head></head><body id="" class="default">