                                                                            


INTRODUCTION

  The function fnTransformPlainTextDocumentToHtml is supposed to make 
  reasonable guesses about how the resulting HTML should appear. 
  One of its features is easy hyperlinking. For example you could type
  -->>
    "Click Here" http://www.yahoo.com
  --<<
  And it should be hyperlinked like this
    "Click Here" http://www.yahoo.com

  To make a relative link on the current web-server type  
  -->>
    "Go to this local file" link:///index.html
  --<<
  And it should appear as follows
  "Go to this local file" link:///index.html
  
  Or to make a link relative to the current web-directory  
  -->>
    "View the textual source for this page" link://junk.txt
  --<<
  And it will be rendered as follows
  "View the textual source for this page" link://junk.txt

  The other thing of note is that headings in the HTML document
  are automatically generated from all-capital lines of text. 
  For example

TYPE IN ALL CAPITALS TO MAKE A HEADING

  This gets rendered into a table of contents at the top of the HTML 
  page and a set of links for navigating around the page.

  There are still a number of things to do:
    Accented characters, images should be able to be put in the
    document, a page title is important, faq sections are useful.
    And lists would be useful as well. 