Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Digital Literacy

Mahmoud Talass
Mahmoud Talass
9,274 Points

Readability

what if other developers try to look at your website's code? can they return it to its original organized state if they want or they will have to deal with it being minified

1 Answer

Steven Parker
Steven Parker
229,732 Points

Many developer tools (such as those built into the Chrome browser) have a "pretty print" capability. This will add line breaks and indentation to make the code more readable, but it still may not be exactly as originally formatted.

More aggressive minification may also do things like abbreviating or substituting variable names. Changes of this type cannot be automatically reversed.