[tw] Re: Export subset of tiddlers to document for non-tiddly people

2008-10-16 Thread Douglas
What I do is create the print style i want then print to PDF (PDFCreater on windows) then email the thing round. It's easy, works and keep the managers happy and they can still copy and paste stuff out of it. D On Oct 15, 1:13 pm, FND [EMAIL PROTECTED] wrote: This *should* include the

[tw] Re: Export subset of tiddlers to document for non-tiddly people

2008-10-15 Thread Eric Shulman
Well, you could do that with a little bit of custom CSS:     [EMAIL PROTECTED] print {          .tiddler .subtitle {              display: none;          }      } Note that I've wrapped this in @media print { ... }, which means it only applies when printing - not sure whether the

[tw] Re: Export subset of tiddlers to document for non-tiddly people

2008-10-15 Thread FND
I'm also hoping to remove the 'edited by' meta information Well, you could do that with a little bit of custom CSS: @media print { .tiddler .subtitle { display: none; } } Note that I've wrapped this in @media print { ... }, which means it only applies