Selecting a menuconfig from Preferences.
-----------------------------------------------------------------------------
Select "Prefs" from the "PROJ" menu.
The default is HTML.menuconfig, this can be changed from the "Menu Config"
menu.
You can also re-load the current .menuconfig by selecting the one already
checked (usefull if you are editing a .menuconfig with EdHT)
Then "SAVE" "USE" or "CANCEL".


Editing or creating a menuconfig.
-----------------------------------------------------------------------------
Menu commands are not numbered, but are simply placed in the order you
want them created.

To create a new menu title-
  MENUTITLE 'menu title name here'

To create a menu item-
  MENUITEM 'item name here'
To add the print out command for the selected item
  MENUITEM 'item name here' CMD 'print tag data here'
To add a menubar to the menu-
  MENUBAR
To add a subitem to the MENUITEM-
  SUBITEM 'subitem name here' CMD 'print tag data here'
To add a menubar to a submenu
  SUBBAR

To add a cursor location in the CMD using * as the cursor position-
  MENUITEM 'item name here' CMD 'data' * 'data'

To add carriage returns using CR or CR2 for 2 returns, CR3 for 3 etc-
  MENUITEM 'item name here' CMD 'data' CR 'data'

To add other ascii characters to MENUITEM SUBITEM or CMD data.
Examples here are CHR32=spacebar character and CHR169=copyright character-
  MENUITEM 'item name' CHR32 'here' CMD 'data' CHR169 'data'

To add comments to your data use a semicolon (;)-
  MENUITEM 'data' CMD 'data' ;everything after semicolon here will be ignored
    SUBITEM 'Align Left' CMD ' ALIGN=LEFT'
    ;SUBITEM 'Align Left' CMD '<H1 ALIGN=LEFT>' * '</H1>'

An example-

MENUTITLE 'Header'
  MENUITEM 'Size 1' CMD '<H1>' * '</H1>'
  MENUITEM 'Size 2' CMD '<H2>' * '</H2>'
  MENUITEM 'Size 3' CMD '<H3>' * '</H3>'
  MENUITEM 'Size 4' CMD '<H4>' * '</H4>'
  MENUITEM 'Size 5' CMD '<H5>' * '</H5>'
  MENUITEM 'Size 6' CMD '<H6>' * '</H6>'
  MENUITEM 'Align'
    SUBITEM 'Align Left' CMD ' ALIGN=LEFT'
    SUBITEM 'Align Center' CMD ' ALIGN=CENTER'
    SUBITEM 'Align Right' CMD ' ALIGN=RIGHT'

Another example-
  MENUITEM 'HTML Base Page' CMD '<HTML>' CR2 '<HEADER>' CR '<TITLE></TITLE>' CR '</HEADER>' CR2 '<BODY>' CR * CR '</BODY>' CR2 '</HTML>'
This is the result (the star indicates where the cursor will be placed)-

<HTML>

<HEADER>
<TITLE></TITLE>
</HEADER>

<BODY>
*
</BODY>

</HTML>
-----------------------------------------------------------------------------

I will be looking at extending the commands for CMD
at the moment-
*,CR,CHR.

The future ?-
FILEREQ    (to auto-get a file name of picture or file)
INPUTREQ   (an input requester)
LIST       (select from a list) eg-
  CMD '<A HREF="mailto:"' LIST,'email' '">' * '</A> '

