Taco HTML Edit's Navigator allows you to see an outline of a HTML, CSS, PHP, or JavaScript document and quickly scroll to different sections in the document. The entries update automatically as you make changes to your document. The Navigator can be displayed or hidden using the Show/Hide Navigator command in the "View" menu.
For HTML, the Navigator lists tags that have an
id
attribute. For CSS, the Navigator lists all CSS selectors. For PHP and JavaScript, class and function declarations are listed. In addition, the Navigator provides links to referenced documents, indicated with the

icon, which you can click to open the referenced document. Referenced documents include the
href
attribute from
<a>
tags and include source files and stylesheets.
You can create a bookmark, comment text that appears in the Navigator, simply by adding a comment to your document that begins with a "!" character. Here are examples for different languages:
HTML:
<!-- !your bookmark text here -->
CSS:
/* !your bookmark text here */
JavaScript:
/* !your bookmark text here */
// !your bookmark text here
PHP:
/* !your bookmark text here */
// !your bookmark text here
# !your bookmark text here