Code Reader

Twinkie

Banned
Messages
1,389
Reaction score
12
Points
0
Is there a small app that can make code more readable, for instance instead of:

HTML:
<html><head>Bla</head><body>...
HTML:
<html>
     <head>
          Bla
     </head>
     <body>
          ...
     </body>
</html>

I have a SOAP request I need to analyze and right now it seems it would take an hour for me to do just that. Maybe a feature in Dreamweaver I missed, something please?
 
Last edited:

zapzack

New Member
Messages
606
Reaction score
19
Points
0
If your on a Mac, I suggest TextWrangler, Coda, or Espresso.. If your on a PC I suggest Notepad plus plus
 

Twinkie

Banned
Messages
1,389
Reaction score
12
Points
0
Thank, I have Notepad++ now. So what should I do to break up and indent the code?
 

zapzack

New Member
Messages
606
Reaction score
19
Points
0
Umm... You should code it that way.. and the editor will usually follow the format..
 

Twinkie

Banned
Messages
1,389
Reaction score
12
Points
0
Thanks but as I mentioned I have Dreamweaver. The code I am trying to read is the SOAP response from a web service, in XML format. It was returned to me in one line an it is several kilobytes long. I need a small app or a feature in Dreamweaver to break it up into a readable format.
Edit:
Nevermind, I found out viewing it through Firefox parsed it. You would think that Dreamweaver would do it for you??

Thanks anyway =)
 
Last edited:
Top