home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / parsomat.zip / exampl11.pom < prev    next >
Text File  |  2001-07-15  |  692b  |  33 lines

  1. ;
  2. ;   Allow null lines
  3. ;
  4. MINLEN "0"
  5. ;
  6. ;   Properize, using the Properization Exceptions File GENERIC.PEF
  7. ;   We properize using the Intelligent and Sentence methods
  8. ;
  9. PROPER $FLINE "IS" "GENERIC.PEF"
  10. ;
  11. ;   Because the list of items is not formatted as recognizable sentences,
  12. ;   we must manually uppercase the first alphanumeric character.
  13. ;
  14. BEGIN $FLINE[1] = "-"
  15.   PROPER $FLINE "ISU" "GENERIC.PEF"
  16. END
  17. ;
  18. ;   We will properize the indented items in the simplest way
  19. ;
  20. BEGIN $FLINE[1] = " "
  21.   PROPER $FLINE
  22. END
  23. ;
  24. ;   The salutation line contains a name, so we must properize it
  25. ;
  26. BEGIN $FLINE[1 4] = "Dear"
  27.   PROPER $FLINE
  28. END
  29. ;
  30. ;   Output
  31. ;
  32. OUTEND |{$FLINE}
  33.