In a default installation of JSPWiki files attached to a JSPWiki page are printed in a list along with the rest of the document. If one has a large amount of attached files in a wiki page, this leads to needless extra printed pages:
I enquired about this on the JSPWiki users mailing list, and Dirk Frederickx kindly gave me the solution to this:
“Following changes to the jspwiki_print.css file, in the “templates/default” directory, will hide the attachment list:”
/* add this line to hide the List of Attachments */
#attach {display:none;}
And, it works a charm.

