Printing

Q: Is it possible to display the full images and their titles in the print view instead of the thumbnails?

A: With Mini version 20110815 or newer, add such a code to config.php:

if($action=='print') {
  $Mini['ImgFmt'] = '<div><img src="%3$s" alt="%2$s" border="0" style="max-width:100%;"/><br/>%2$s<br/>&nbsp;</div>';
  $Mini['LinkFmt'] = '%1$s';
  # $WikiStyle['comment']['display'] = 'block';
}

If you have hidden thumbnails and want to print them too, remove the # before $WikiStyle.

Test the print preview.

Achelousaurus dinosaurAerogelbrickAtlantis Docked to MirA smoky day at the Sugar Bowl--HupaBees Collecting Pollen 2004-08-14BlechnumColensoiBreslau Ring Ostseite 1890-1900Bridge declarer

For Mini version 20110811 or older, add the following code to config.php:

if($action=='print') {
  $Mini['ImgFmt'] = '%2$s';
  $Mini['LinkFmt'] = '<div><img src="%2$s" border="0" style="max-width:100%;"/><br/>%1$s</div>';
  # $WikiStyle['comment']['display'] = 'block';
}

The above code will work for the Mini: markup, but not for lowercase mini: without links.