Formatting
Minify: omits unnecesary space to try and produce the smallest, lexically identical output.
function foo() { bar(); }
Prettify: introduces indentation to make the output more readable at the cost of making the output larger.
function foo(){bar()}
These formatting options affect the rendering of CSS and JS but do not affect the rendering of HTML or XML.