top | item 5670552

Ask HN: Why is Amazon's HTML crazy?

9 points| samdunne | 13 years ago | reply

If you view the source on any product page you have around 100 lines of whitespace and the <title> isn't found until line 3,500-ish

Not to mention all of their CSS is inline

Why is it like this? It seems to me it is far more complex than it needs to be

9 comments

order
[+] rzimmerman|13 years ago|reply
For some reason they have the following comment towards the bottom of the homepage:

<!-- MEOW -->

[+] samdunne|13 years ago|reply
That is definitely a forgotten debug point
[+] fadzlan|13 years ago|reply
I would suppose when you see a page from Amazon, there are numbers of the system that contributes to the page. Some with HTML, some with API. And as other commenter mentions, these are all generated by some backend system. Probably no one has to full control on how to format HTML at the front. Or they probably can, but with a lot of meetings.

The store front probably just gather all this stuff to produce the final page that you see.

[+] houjieth|13 years ago|reply
Because they are all legacy code. No one wants to do the cleaning work.
[+] brudgers|13 years ago|reply
More importantly, no one needs to do it.

And most importantly, no one is allowed to do it because it does not need to be done.

White space is free as in beer (when all the bandwidth available for AWS is a sunk cost).

[+] wcfields|13 years ago|reply
Just took a quick look. I'm guessing they separated it into 20+ linebreaks between chunks to delineate which section of code produced which HTML.
[+] ibudiallo|13 years ago|reply
html is for the browser to read not people.