home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / text / frame / 4071 < prev    next >
Encoding:
Internet Message Format  |  1993-01-28  |  1.4 KB

  1. Path: sparky!uunet!oracle!pyramid!infmx!hartman
  2. From: hartman@informix.com (Robert Hartman)
  3. Newsgroups: comp.text.frame
  4. Subject: Re: Smart Spaces in MML
  5. Message-ID: <1993Jan27.183108.2150@informix.com>
  6. Date: 27 Jan 93 18:31:08 GMT
  7. References: <iacovou.728073651@jessica>
  8. Sender: news@informix.com (Usenet News)
  9. Organization: Informix Software, Inc.
  10. Lines: 29
  11.  
  12. In article <iacovou.728073651@jessica> iacovou@jessica.cs.umn.edu (Neophytos Iacovou) writes:
  13. >
  14. >  Hi;
  15. >
  16. >  I am writing an MML file, and I want to turn of Smart Spaces (I want to
  17. >  be able to have more than 1 space in a row), how do I do this?
  18. >
  19. >  Also, is there any documentaion which is better than what cames from
  20. >  Frame on the subject of MML? The pamphlet from Frame makes me feel
  21. >  as though it is incomplete.
  22. >
  23. >  Thanks a lot.
  24. >
  25. >
  26. >  BTW: if this is a common question please respond via e-mail. again, thanks.
  27.  
  28. You can turn off smart spaces when you import the MML into a Frame
  29. document.  Just turn off smart spaces in the document before
  30. importing the MML.  Unfortunately, this turns off smart spaces
  31. globally for the entire document.  If you don't filter out doubled
  32. spaces after periods, they'll persist in your Frame document.
  33.  
  34. If you want to preserve spaces in just one part of a document, you'll
  35. need to replace each space to preserve with the code for a non-breaking
  36. space character, as with the following substitution command:
  37.  
  38. s/ /<\\x11>/g
  39.  
  40. -r
  41.