Metropoli BBS
VIEWER: exampl11.pom MODE: TEXT (ASCII)
;
;   NOTE:  A quick-reference summary of POM commands appears in EXAMPL04.POM
;
;-------------------------------------------------------------------------------
;
;   Allow null lines
;
MINLEN "0"
;
;   Properize, using the Properization Exceptions File GENERIC.PEF
;   We properize using the Intelligent and Sentence methods
;
PROPER $FLINE "IS" "GENERIC.PEF"
;
;   Because the list of items is not formatted as recognizable sentences,
;   we must manually uppercase the first alphanumeric character.
;
BEGIN $FLINE[1] = "-"
  PROPER $FLINE "ISU" "GENERIC.PEF"
END
;
;   We will properize the indented items in the simplest way
;
BEGIN $FLINE[1] = " "
  PROPER $FLINE
END
;
;   The salutation line contains a name, so we must properize it
;
BEGIN $FLINE[1 4] = "Dear"
  PROPER $FLINE
END
;
;   Output
;
OUTEND |{$FLINE}
[ RETURN TO DIRECTORY ]