home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / hdk11l.zip / WWWLIB.HDF < prev   
Text File  |  1994-01-08  |  2KB  |  41 lines

  1. ;******************************************************************************
  2. ; Ver 11.0, Last Update Dec 24, 1993                                          *
  3. ;                                   wwwLIB                                    *
  4. ;                                                                             *
  5. ; This library adds functionality to HLPDK 11.0+ docuemnts that are compiled  *
  6. ; to the WWW HTML target                                                      *
  7. ;                                                                             *
  8. ; The following added functionality is added :                                *
  9. ;                                                                             *
  10. ; Text Attributes for internal pieces of text. (bold, italic)                 *
  11. ;******************************************************************************
  12.  
  13. .ifdef www
  14.  
  15. ;******************************************************************************
  16. ;                               Text Attributes                               *
  17. ;                                                                             *
  18. ; boldText - Display text in bold, e.g. - ~Text~boldText~ - Text will be in   *
  19. ;                                         bold                                *
  20. ; italicText - Display text in italic                                         *
  21. ; boldItalicText - display text in bold italic                                *
  22. ;******************************************************************************
  23.  
  24. .userlink boldText '<b>%t</b>'
  25. .userlink italicText '<i>%t</i>'
  26. .userlink boldItalicText '<b><i>%t</i></b>'
  27.  
  28. ;******************************************************************************
  29. ;                                    Links                                    *
  30. ;                                                                             *
  31. ;******************************************************************************
  32.  
  33.  
  34. .endif
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.