home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / HTMLCO18.ZIP / HTMLCON.INI < prev    next >
Text File  |  1995-04-24  |  6KB  |  184 lines

  1. # HTMLCon Initialization File (current through version 1.8)
  2. # ---------------------------------------------------------
  3. #
  4. # ----- ABOUT THE HTMLCON.INI CONTROL FILE -----
  5. #
  6. # Lines beginning with a pound sign are considered comments.
  7. # All other lines are considered instructions and must exactly follow
  8. # the format described in this sample file.  Arguments are seperated
  9. # by an equal sign (=) which must not be preceeded or succeeded by
  10. # a space or tab.
  11. #
  12. #
  13. # ----- DEFINING THE OUTPUT LINE LENGTH -----
  14. #
  15. # Define the default point at which HTMLCon should attempt to break a
  16. # line for the output file.  The break is not guaranteed to occur at
  17. # this point, but as close to it as possible to retain the syntax of
  18. # the input line.  Default=65.
  19. #
  20. linebreak=75
  21. #
  22. #
  23. # ----- COLLECTING STATISTICS -----
  24. #
  25. # Statistics can be compiled and written to the output file.  Default=No.
  26. # Use of this function does not increase the processing time and it does
  27. # provide some interesting information in the output file.
  28. #
  29. statistics=yes
  30. #
  31. #
  32. # ----- VIEWING OR PROCESSING THE OUTPUT FILE AUTOMATICALLY -----
  33. #
  34. # You may launch another program after HTMLCon finishes its work.  This
  35. # may be an ASCII file viewer, editor, or whatever.  The launched program
  36. # must be able to take the output file name as an argument.  In order to
  37. # accomplish this you must provide the FULL PATH to your program.  This
  38. # is a handy function to allow you to automatically and immediately see
  39. # the results of the HTMLCon conversion process.
  40. #
  41. #launchprog=c:\utils\list.com
  42. #
  43. #
  44. # ----- FINDING AND REPLACING THINGS -----
  45. #
  46. # Find and replace:  you may specify up to 50 strings to be located in
  47. # the HTML file and replaced in the ASCII output file.  These will be a
  48. # direct replacement using the two commands "find=" and "replace=".  Each
  49. # "find" element will be replaced by a "replace" element, therefore you
  50. # cannot have a "find=" statement without a following "replace=" statement.
  51. # To specify leading or ending spaces in a statement, surround the statement
  52. # with quotations (").  The strings cannot exceed 40 characters each.
  53. #
  54. find=" -- "
  55. replace=--
  56. #
  57. # Here is an example replacing all HTMLCon reference symbols [*] with just *.
  58. #
  59. #find=[*]
  60. #replace=*
  61. #
  62. # Or just ignore all references altogether...
  63. #
  64. #find=[*]
  65. #replace=
  66. #
  67. # And replace all HTMLCon image symbols [IMAGE] with a shorter one.
  68. #
  69. #find=[IMAGE]
  70. #replace=[I]
  71. #
  72. # Or just ignore them altogether...
  73. #
  74. #find=[IMAGE]
  75. #replace=
  76. #
  77. # And replace all HTMLCon list/tab markers with two spaces.
  78. #
  79. find=->
  80. replace="  "
  81. #
  82. # Or replace the list/tab markers with something else...
  83. #
  84. #find=->
  85. #replace=|
  86. #
  87. # Or just ignore them altogether...
  88. #
  89. #find=->
  90. #replace=
  91. #
  92. #
  93. # ----- KEEPING THE AUTHOR'S ORIGINAL FORMATTING -----
  94. #
  95. # You may elect to keep the formatting characteristics of the original
  96. # HTML file intact.  This will preserve white spaces, line breaks, etc. as
  97. # originally constructed by the author of the HTML page.  This option
  98. # will also eliminate the HTMLCon tab markers (->) and replace them with
  99. # four spaces to indicate tab lists. Uncomment the following line to
  100. # preserve the original formatting:
  101. #
  102. #keepformatting=yes
  103. #
  104. #
  105. # ----- IGNORING HTMLCON'S MARKERS IN THE OUTPUT FILE -----
  106. #
  107. # You may choose to have HTMLCon not replace certain HTML constructs
  108. # with its own markers (for example, HTMLCon replaces URL references
  109. # with the symbol [*]).  To have HTMLCon simply ignore its own symbols and
  110. # not reference certain items in the original HTML file, uncomment the
  111. # next line:
  112. #
  113. #ignoresymbols=yes
  114. #
  115. #
  116. # ----- PRESERVING HREF MARKERS IN THE OUTPUT FILE -----
  117. #
  118. # You may instruct HTMLCon to preserve all <A HREF...> constructs when
  119. # converting the HTML file.  These references will be preserved intact,
  120. # without modification.  To use this feature, uncomment the next line:
  121. #
  122. #keephref=yes
  123. #
  124. #
  125. # ----- ELIMINATING ADVERTISEMENTS AND DELAYS -----
  126. #
  127. # Eliminate the advertisements and delays
  128. # [available to registered users only]
  129. #
  130. #
  131. # ----- PRINTING THE OUTPUT FILE ON LPT1 -----
  132. #
  133. # If you would like the option to send the processed file to LPT1
  134. # then uncomment the next line:
  135. #
  136. #useprinter=yes
  137. #
  138. # Note that you may only send the processed file to a line printer
  139. # attached to LPT1 and that HTMLCon assumes the printer is connected
  140. # and operating properly.
  141. #
  142. #
  143. # ----- SPEED PROCESSING MULTIPLE FILES -----
  144. #
  145. # Uncomment the following line to tell HTMLCon to NEVER pause for any
  146. # prompt, including the call to your file viewer or other
  147. # post-processor.
  148. #
  149. #nopause=yes
  150. #
  151. #
  152. # ----- IGNORING CERTAIN FILE TYPES -----
  153. #
  154. # The following directive lists file extensions which should always be
  155. # ignored by HTMLCon.  If an input file name contains one of these
  156. # extensions than it will never be processed.  Note that the file
  157. # extension must always include the "." in this directive:
  158. #
  159. ignore=.ZIP.EXE.COM.LZH.GIF.LPG.ARC.ASC.SYS.INI.TXT.DOC
  160. #
  161. #
  162. # ----- USING USER-DEFINED FILTERS -----
  163. #
  164. # Uncomment the next directive to have HTMLCon apply a set of filter
  165. # replacements contained in the file HTMLCON.FIL in HTMLCon's default
  166. # directory.  This filter file will find and replace HTML ENTITIES
  167. # in your output file.
  168. #
  169. usefilter=yes
  170. #
  171. #
  172. # ----- CHANGING THE DEFAULT OUTPUT FILE NAME EXTENSION -----
  173. #
  174. # HTMLCon normally uses the default file extension ".ASC" when multiple
  175. # files are processed or the file extension is not specified.  You may
  176. # specify your own default file extension using the following command.
  177. # This file extension MUST be preceeded by a "." and contain no more than
  178. # three characters.
  179. #
  180. #extension=.TXT
  181. #
  182. #
  183. # End of file
  184.