Outline Tag

o>

The outline tag allows you to create large quatities of nested items simply by using tabs to differentiate the different heading levels.

Example:

o>
	item
		sub-item
		sub-item
		sub-item
	another item
		sub-item
		sub-item
			another child
				way out here
		sub-item
		sub-item
/>

yields:

  1. item
    1. sub-item
    2. sub-item
    3. sub-item
  2. another item
    1. sub-item
    2. sub-item
      1. another child
        1. way out here
    3. sub-item
    4. sub-item

Outline of Links Tag

ol>

Much like a list of links, you can have an outline of links. This is useful when you want to create a Table of Contents.

Example:

ol>
	tag_outline.html#here
		tag_outline.html#here	You can put a label after a tab.
/>

yields:

  1. tag_outline.html#here
    1. You can put a label after a tab.

tag_outline.swl