Possible Duplicate:
ExpressJS: how to output pretty html
I'm using Express as framework for node.js. In fact I don't have any error or trouble except for one little issue when I right-click at the browser and hit the "view page source" option all my HTML code looks like a mess, is not indented that all and actually I think is one line, like:
<html><head><title>Trade</title><link rel="stylesheet" href="/css/bootstrap/bootstrap.css"/><link rel="stylesheet" href="/css/trade.css"/><link rel="stylesheet" href="/css/bootstrap/bootstrap-responsive.css"/></head><body>...
Instead of
<html>
<head>
<title>Trade</title>
<link rel="stylesheet" href="/css/bootstrap/bootstrap.css"/>
<link rel="stylesheet" href="/css/trade.css"/>
<link rel="stylesheet" href="/css/bootstrap/bootstrap-responsive.css"/>
</head>
<body>
I know this is not really a problem but knowing that my code looks like this mess, keeps me awake at night ;)