Changes between Version 6 and Version 7 of EmailProcessorMacro


Ignore:
Timestamp:
May 27, 2008, 6:37:49 AM (16 years ago)
Author:
John Hampton
Comment:

added instruction on how to specify number of columns

Legend:

Unmodified
Added
Removed
Modified
  • EmailProcessorMacro

    v6 v7  
    33== Description ==
    44
    5 Processor to wrap a {{{<pre></pre>}}} text block to 72 cols.
     5Processor to wrap a {{{<pre></pre>}}} text block to a specified number of columns, 72 by default.
    66
    77This is especially useful for pasting emails and getting blocks that don't scroll.
     
    3131== Example ==
    3232
    33 Use it like code highlighting:
     33Invocation:
    3434{{{
    3535 {{{
    3636 #!email
    37  This is some text that will be wrapped
     37 <email stuff here>
    3838 }}}
    3939}}}
     40To wrap to a specified length, the line immediately following the invocation should contain `cols: ` followed by the number of columns at wich we wrap.  For example:
     41{{{
     42 {{{
     43 #!email
     44 cols: 40
     45 <email stuff here>
     46 }}}
     47}}}
     48It is important that the `cols:` starts at the beginning of the line and that only a number follows it.
     49
    4050
    4151== Recent Changes ==