Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there an automated tool which converts your static HTML and CSS from files with indenting and new lines into a file with one line and no indenting ?

Please note that I am talking about static HTML and CSS, not a dynamic response generated by some web app.

share|improve this question
I'm afraid that this question is off-topic here, since you're not asking for (specific) programming help, you're asking for a product recommendation. As a tip, though, you're looking for a html/css minifier. Also it's an exact duplicate of a closed question: stackoverflow.com/questions/787789/… (which may be useful to you). – David Thomas Oct 21 '12 at 7:24

closed as not constructive by David Thomas, DarkCthulhu, martin clayton, Rob, delnan Oct 21 '12 at 11:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

YUI Compressor is commonly used for compressing CSS. I'm not aware of a similar tool for HTML, but I'm sure they exist. You just need something to strip out [\s\r\n], but you have to retain them in and sections, at least.

share|improve this answer

jsBeautifier http://jsbeautifier.org/

Inline tool with several options to indent . Copy and paste your content

To compress your code: http://javascriptcompressor.com/

CSS compressor: http://refresh-sf.com/yui/

HTML compressor: http://www.textfixer.com/html/compress-html-compression.php

i also recommend to verify your code with jslint/jshint before compressing it if you have javascript code as well.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.