I'm testing out MasterPages and I have a minor quirk that is not a huge problem, but it bothers me. Is there anyway to control the output of the head of the document? The reason I ask is when using MasterPages, it just makes one continuous line of meta tags, link tags, etc. I want to control the output so I can put a CRLF after each tag to make it more readable.
Here is what the output is:
<html>
<head><title>
Untitled Page
</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><link href="/css/global.css" rel="stylesheet" type="text/css" /></head>
I want it to look more like this:
<html>
<head>
<title>Untitled Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="/css/global.css" rel="stylesheet" type="text/css" />
</head>
Any ideas??