﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4920	Script tags are not indented in the output HTML	Wiktor Walc		"This is not a bug, but it simply doesn't look nice.

Using the following code in full page mode:
{{{
<html>
	<head>
		<title>CKEditor Sample</title>
		<meta content=""text/html; charset=utf-8"" http-equiv=""content-type"" />
		<script type=""text/javascript"" src=""script1.js""></script>
		<script type=""text/javascript"" src=""script2.js""></script>
		<link href=""/search"" rel=""search"" />
		<link href=""my.css"" rel=""stylesheet"" type=""text/css"" />
	</head>
	<body>
		<p>
			test</p>
	</body>
</html>
}}}

it is transformed into:

{{{
<html>
	<head>
		<title>CKEditor Sample</title>
		<meta content=""text/html; charset=utf-8"" http-equiv=""content-type"" />
<script type=""text/javascript"" src=""script1.js""></script><script type=""text/javascript"" src=""script2.js""></script>		<link href=""/search"" rel=""search"" />
		<link href=""my.css"" rel=""stylesheet"" type=""text/css"" />
	</head>
	<body>
		<p>
			test</p>
	</body>
</html>
}}}

Note that `<script>` tags are in one line and in the same line there is also one `<link>` element.

This bug existed also when the full page mode was not available."	Bug	confirmed	Normal		General	3.0.1			
