Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the best online code beautifier and formatter out there? I'm not asking for highlighters. Any language will do.

share|improve this question
6  
viewed over 57k times... good thing you guys got on top of it and closed this – Daniel Feb 27 at 22:08
Over 61k times now, so about 4k views in the last month. Yes, definitely not a constructive question. – Paul Apr 2 at 13:50
Not sure why this topic was closed, but tohtml.com/javaProperties worked well for me. The styles and color are "inline" which makes it very simple to copy and paste into something else. – Andrew Bucklin May 19 at 16:30

closed as not constructive by Toon Krijthe, Kev Aug 9 '12 at 22:53

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.

8 Answers

For PHP, Java, C++, C, Perl, JavaScript, CSS you can try:

http://www.prettyprinter.de/index.php

share|improve this answer
10  
Did you actually try this one? It outputs > for > and similar. – Wallacoloo May 10 '11 at 2:27
   
I think that is because those will be embedded inside another html page, as a sample, etc, and really should be. – Andrew Backer Nov 2 '11 at 10:24
It outputs < for &lt;... – Christian Mar 9 at 16:59

You can use Perl::Tidy for Perl.

share|improve this answer
3  
Are you sure ? "perl and tidy". I am not accustomed to see those words together. [-) – Pratik Deoghare Aug 23 '09 at 9:00
9  
Yes I am sure. Maybe you are not accustomed to seeing the two together, but maybe you should also consider hanging out with a higher class of people. :) – brian d foy Aug 23 '09 at 17:32

I've used Quick Highlighter a lot. Works great for a huge list of languages.

share|improve this answer
3  
-1 OP didn't ask about highlighters. This doesn't do formatting/beautifying. – bluish May 3 '11 at 12:56

JsonLint is good for validating and formatting JSON.

share|improve this answer
JsonLint is a great tool for quickly validating JSON output. – Matt Setter Dec 21 '11 at 12:26
If you're using Chrome, there's a great json formatter extension at chrome.google.com/webstore/detail/… – David Woods May 15 '12 at 22:09

Use gist.github.com. There is a multi-language support(java, c, c++, c#, vb, haskell, ruby, javascript, lua, HTML, SQL, Tcl, Perl, JSON, groovy...)

Here is a sample "Generate LiquiBase changeLogs using Groovy"

share|improve this answer
1  
Dude, it's really beautiful. I'd choose this as the answer :-) Thanks… – user1521536 Nov 10 '12 at 14:19
1  
its only showing pasted code. How to format that ? – Dev Nov 14 '12 at 9:13
that is correct, it is a code beautifier and code snippets storage. It has some cool features (like share, star and private snippets). – rayyildiz Nov 16 '12 at 6:51
1  
checked most of links on this page. This one is best. – Sergey Grinev Apr 2 at 13:37
-1, This is a code highlighter not a code beautifier / formatter. – Alix Axel 2 days ago

What language?? There are different tools for almost every imaginable programming language, since they all have different syntactic rules and conventions.

Good ol' indent is a nice, customizable, command-line utility to format C and C++ programs.

share|improve this answer
2  
Since the question asked for "online beautifier", do you know of any Web frontends to indent? – Anm in LA Aug 10 '12 at 4:48

It depends of the language, and of the architecture you are using.

alt text alt text

For example, in a php platform, you can format almost language with GeSHi

As bluish comments, GeSHi is a generic syntax highlighter, with no beautification feature. It is more used on the server side, and combine it with a beautification tool can be tricky, as illustrated with this GeSHi drupal ticket.

share|improve this answer
-1 has no beaufitication, only hightlighting – bluish May 3 '11 at 12:59
@bluish: true. I have included your comment in my answer. – VonC May 3 '11 at 14:44

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