Beautify

The Beautify command uses rules defined by the Syntax Editor application to properly format and indent HTML tags. This feature can be found on the Search menu.

Use Beautify when looking at poorly indented code. It greatly increases readability.

The following example illustrates the effects of beautification.

Before Beautification:
<HTML> <HEAD><TITLE>Document Title</TITLE> </HEAD> <body><script language="javascript"> if (window.name != "content") document.write("<center><a href='../index.html?page=Source/Beautify.htm'>show framing</a></center>") </script> <CENTER><H2>Page Header</H2> Start your document here. </CENTER> </BODY> </HTML>
After Beautification:
<HTML> <HEAD> <TITLE>Document Title</TITLE> </HEAD> <body><script language="javascript"> if (window.name != "content") document.write("<center><a href='../index.html?page=Source/Beautify.htm'>show framing</a></center>") </script> <CENTER> <H2>Page Header</H2> Start your document here. </CENTER> </BODY> </HTML>