Dreamweaver CS4 Resources
|
Find coding errors with the Validator
You
can use the Validator in Dreamweaver to quickly
locate tag or syntax errors in your code. You can specify the tag-based
languages against which the Validator should check, the specific
problems that the Validator should check, and the types of errors
that the Validator should report.
Note: Validator preferences
are ignored when you validate a document that explicitly specifies
a doc type.
- Select Edit > Preferences (Windows)
or Dreamweaver > Preferences (Macintosh).
- Select Validator from the Category list on the left.
- Select tag libraries to validate against.
You can’t select multiple versions of the same tag library
or language; for example, if you select HTML 4.0, you can’t
also select HTML 3.2 or HTML 2.0. Select the earliest version
you want to validate against; for example, if a document contains
valid HTML 2.0 code, it will also be valid HTML 4.0 code.
- Click Options, and set options for those libraries.
- Select Display options for the types of errors and warnings
that you want the Validator report to include.
- Select items the Validator should check for:
- Quotes In Text
- Indicates that Dreamweaver should
warn you about each use of quotation marks in the text of the document;
you should use the " entity instead of quotation marks
in the text of HTML documents.
- Entities In Text
- Indicates that Dreamweaver should
recommend changing certain characters (such as ampersand (&),
less-than (<), and greater-than (>)) to their HTML entity
equivalents.
- Click OK to close the Validator Options dialog box, and
click OK again to set the preferences.
|