home *** CD-ROM | disk | FTP | other *** search
/ Easy Personal Web Page / Easy Personal Web Page.iso / HTML_EDT / HTMLED / HTMLED.TXT < prev    next >
Encoding:
Text File  |  1996-04-22  |  5.3 KB  |  163 lines

  1. HTMLed - An HTML Editor for Microsoft Windows
  2.  
  3.  
  4.  
  5. About HTMLed
  6.  
  7.  
  8.  
  9. HTMLed is an editor for Microsoft Windows 3.1 to be used to create HTML
  10.  
  11. (Hypertext Markup Language) documents.  Information on WWW (World-Wide-Web) 
  12.  
  13. servers is usually in HTML format.
  14.  
  15.  
  16.  
  17. HTMLed is distributed under the shareware concept.
  18.  
  19. Please see README.TXT for registration information.
  20.  
  21.  
  22.  
  23. HTMLed is produced by I-Net Training & Consulting Ltd.
  24.  
  25. Contact us at:
  26.  
  27.  
  28.  
  29. Internet Software Technologies
  30.  
  31. P.O. Box 756
  32.  
  33. Sackville, New Brunswick, Canada
  34.  
  35. E0A 3C0
  36.  
  37. inettc@nbnet.nb.ca
  38.  
  39. (506) 364-8088
  40.  
  41.  
  42.  
  43. Features:
  44.  
  45.  
  46.  
  47. Reads, writes UNIX files
  48.  
  49. Foreign character tags support
  50.  
  51. Implements the full set of HTML markup tags
  52.  
  53. Floating toolbars
  54.  
  55. Customizable floating toolbar
  56.  
  57. Multiple Document Interface
  58.  
  59. "Intelligent" insertion of HTML tags on a line-by-line basis
  60.  
  61. Converts the URLs in a MOSAIC.INI file to an HTML document
  62.  
  63. while retaining the original menu structure.
  64.  
  65. "Test" button to launch an HTML browser to test your HTML document.
  66.  
  67. Saves files without HTML tags
  68.  
  69.  
  70.  
  71.  
  72.  
  73. Using HTMLed
  74.  
  75.  
  76.  
  77. About the menus.
  78.  
  79.  
  80.  
  81. File Menu
  82.  
  83. Edit Menu
  84.  
  85. Search Menu
  86.  
  87. Element Menu
  88.  
  89. List Menu
  90.  
  91. Link Menu
  92.  
  93. Style Menu
  94.  
  95. Entity Menu
  96.  
  97. Options Menu
  98.  
  99. Window Menu
  100.  
  101.  
  102.  
  103.  
  104.  
  105. File Menu
  106.  
  107.  
  108.  
  109. This menu performs actions such as opening and saving files.  HTMLed allows 
  110.  
  111. you to save files in either MS-DOS or UNIX format.  MS-DOS text files have 
  112.  
  113. a CR-LF (carriage return & line feed) pair at the end of each line.  UNIX 
  114.  
  115. text files have only a line feed character.  When opening a file, HTMLed will 
  116.  
  117. attempt to determine which type of file it is, and open it in the appropriate 
  118.  
  119. mode.  Also on the file menu is an option to save a file as plain text, without
  120.  
  121. any HTML tags.  The option to "Test HTML Document"  will launch a program
  122.  
  123. (such as NCSA Mosaic) and pass the current file name to the program as a 
  124.  
  125. command-line parameter.  The path to this program must be configured in the 
  126.  
  127. Options|Setup dialog box.
  128.  
  129.  
  130.  
  131. Edit Menu
  132.  
  133.  
  134.  
  135. This menu contains options to select, cut, and paste text within and between 
  136.  
  137. documents, using the Windows Clipboard so you can cut and paste to other 
  138.  
  139. applications.  The "Remove HTML Tags" option allows you to select a block of
  140.  
  141. text and remove all the HTML tags from the selected text.
  142.  
  143.  
  144.  
  145. Search Menu
  146.  
  147.  
  148.  
  149. This menu contains options to search and replace text in a document.
  150.  
  151. The "Intelligent Tag Insert" allows you to insert text at the start,
  152.  
  153. end, or both the start and end of lines in an HTML document.  You can
  154.  
  155. select the lines to be affected by specifying a string that is either
  156.  
  157. at the beginning or end, or that is contained in a line.  For example,
  158.  
  159. you could insert <H1> and </H1> at the beginning and end of every line
  160.  
  161. that ends with a colon (":").
  162.  
  163.  
  164.  
  165. Example:
  166.  
  167.  
  168.  
  169. Original text is
  170.  
  171.  
  172.  
  173.     Some heading:
  174.  
  175.     Blah blah blah...
  176.  
  177.     ...
  178.  
  179.     ...
  180.  
  181.  
  182.  
  183.     Some other heading:
  184.  
  185.     Blah blah blah again...
  186.  
  187.     ...
  188.  
  189.     ...
  190.  
  191.  
  192.  
  193. After Intelligent Tag insert
  194.  
  195.  
  196.  
  197.     <H1>Some heading:</H1>
  198.  
  199.  
  200.  
  201.     Blah blah blah...
  202.  
  203.     ...
  204.  
  205.     ...
  206.  
  207.  
  208.  
  209.     <H1>Some other heading:</H1>
  210.  
  211.  
  212.  
  213.     Blah blah blah again...
  214.  
  215.     ...
  216.  
  217.     ...
  218.  
  219.  
  220.  
  221.  
  222.  
  223. Element Menu
  224.  
  225.  
  226.  
  227. The items on this menu insert various HTML markup tags in the document.
  228.  
  229. Note that some tags, such as TITLE are 'containers', which means that
  230.  
  231. they are 'wrapped' around the text to which they apply.  For this type of,
  232.  
  233. tag, you should first select the text you want to be in the container, and
  234.  
  235. then select the menu option (or button or shortcut key).  Other tags
  236.  
  237. are single tags and will be inserted at the current cursor position.
  238.  
  239.  
  240.  
  241. List Menu
  242.  
  243.  
  244.  
  245. These items will create various types of lists from the selected text.
  246.  
  247. HTMLed will operate on the selected text in the following manner:
  248.  
  249. If there is no whitespace at the beginning of a line, a <LI> tag will
  250.  
  251. be inserted.  If there is whitespace, it will be assumed that this
  252.  
  253. line is part of the previous list item.
  254.  
  255.  
  256.  
  257. Link Menu
  258.  
  259.  
  260.  
  261. These options pop up dialog boxes so you can enter the appropriate 
  262.  
  263. information to create links to HTML documents and images.
  264.  
  265.  
  266.  
  267. Style Menu
  268.  
  269.  
  270.  
  271. These menu items allow you to format text in various styles.  Select the text 
  272.  
  273. you wish to format and then select the desired style.
  274.  
  275.  
  276.  
  277. Entity Menu
  278.  
  279.  
  280.  
  281. HTML entities are representations of special characters, such as ">" (without 
  282.  
  283. the quotes) which is a greater-than sign (">").  Entities are also used for other special
  284.  
  285. characters such as foreign characters which are not part of the standard 7-bit ASCII 
  286.  
  287. character set.  The "Make Acute", "Make Circumflex", etc. items allow you to select a 
  288.  
  289. character and then add an accent to it. HTMLed will only allow you to add accents to
  290.  
  291. create characters which are valid in HTML.
  292.  
  293.  
  294.  
  295.  
  296.  
  297. Options Menu
  298.  
  299.  
  300.  
  301. The Options menu gives access to the Setup dialog, where configuration options for HTMLed
  302.  
  303. are set, and also to the custom toolbar setup dialog.  This dialog box is used to configure the 
  304.  
  305. custom toolbar.  There are also items which toggle between displaying and not displaying the 
  306.  
  307. four different floating toolbars.  "Convert mosaic.ini to HTML file" will take the URLs in 
  308.  
  309. NCSA Mosaic's .INI file and produce an HTML page containing them.
  310.  
  311.  
  312.  
  313.  
  314.  
  315. Window Menu
  316.  
  317.  
  318.  
  319. This menu contains options for tiling and cascading open windows.  A list of currently open windows 
  320.  
  321. in HTMLed is also on this menu.
  322.  
  323.  
  324.  
  325.