Here is the article in Preview mode:

Here is the article in normal Display mode:

The corresponding HTML code from the editor window is:
<a name="both" href="#both_toc"><b>Filter by Both Address and Subject</b></a><br />
<br />
Combining the above two examples to filter on an incoming email or subject,
you use the <b>or</b> keyword. Assuming the incoming mail could either be
from "flashcoders@macromedia.com" OR have "FlashCoders" in the subject line,
you would add the following to <b>forward.txt</b>:
<pre> ## Put all mail from the FlashCoders mailing list into it's own folder<br /> if<br /> $header_from: contains "flashcoders@macromedia.com" or<br /> $header_subject: contains "FlashCoders"<br /> then<br /> save $home/Maildir/.Flash/<br /> finish<br /> endif</pre>
<br />