home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / textual / zap / zmods / Modules / !ZapHTML / HelpData < prev    next >
Encoding:
Text File  |  1997-04-28  |  1.8 KB  |  56 lines

  1. | ***************************
  2. | * ZapHTML Matthew Hambley *
  3. | ***************************
  4.  
  5. mode_html
  6. Matthew Hambley's HTML colouring mode.
  7. This also offers a number of commands for writing HTML.
  8.  
  9. HTMLDEFITEM (ZapHTML Matthew Hambley)
  10. Inserts <DT> ... <DD> around the current selection.
  11.  
  12. HTMLHEADING <string> (ZapHTML Matthew Hambley)
  13. The <string> parameter is EVALuated to x.
  14. If x >= 1 amd x <= 6 then this command inserts "<Hx></Hx>" around the current
  15. selection, or at the cursor position if there is none.
  16.  
  17. HTMLIMAGE (ZapHTML Matthew Hambley)
  18. This is used for inserting image files into HTML documents.
  19. If there is no selection present, the current cursor position is used.
  20.  
  21. HTMLINSERT <string> (ZapHTML Matthew Hambley)
  22. Appears to act in a very similar manner to the INSERT command.
  23.  
  24. HTMLLINK <string> (ZapHTML Matthew Hambley)
  25. This is used for inserting links to other files into HTML documents.
  26.  
  27. HTMLLIST <string> (ZapHTML Matthew Hambley)
  28. For inserting HTML lists.  The first tag in the string parameter
  29. represents the type of list to be inserted; the other parameters mark
  30. individual entries.  The first tag is opened and closed around the current
  31. selection.  Subsequent tags are inserted first at the start of the marked
  32. region, and next at the endo of it.
  33.  
  34. HTMLREMARK (ZapHTML Matthew Hambley)
  35. Inserts "<!--" and "-->" at the beginning and end of the current selection.
  36.  
  37. HTMLSINGLETAG <string> (ZapHTML Matthew Hambley)
  38. Inserts the specified tag at the current cursor position.
  39.  
  40. HTMLTAGPAIR <string> (ZapHTML Matthew Hambley)
  41. Inserts the specified tag around the current selection.
  42. If there is no selection present, the current cursor position is used.
  43.  
  44. HTMLTEMPLATE (ZapHTML Matthew Hambley)
  45. Inserts:
  46. <HTML>
  47. <HEAD>
  48. <TITLE></TITLE>
  49. <BASE HREF="">
  50. </HEAD>
  51. <BODY>
  52. ...at the start of the file and...
  53. </BODY>
  54. </HTML>
  55. ...at the end of it.
  56.