The single most difficult issue is the page footer, getting it to appear on the bottom.
You can adjust this in the browser settings.
I think the print-tiddler would be a nice-to-have feature for the core, what do you think?
I think the print-tiddler would be a nice-to-have feature for the core, what do you think?
... The PageTemplate isn't needed for the latter
On Friday, August 2, 2019 at 12:05:53 PM UTC+2, BurningTreeC wrote:... The PageTemplate isn't needed for the latterThat's even better. ... I thought I needed it. ... May be a testing error.
-m
This sounds great because I think tiddlywiki would be ideal for both use as a smart document but also a document generator from web sites to pages and to print. Making it seemless would be nice.
I have a real world case I am working on so I can establish the key requirements. I think the most important is to handle the page layouts and the transition to print. The same is true for in browser lists and tiddlywiki is good at lists. We need to take control of the bottom of our lists which are prone to running long on the screen when keeping them in a tiddler, and one visible screen with scroll is often better.
An interesting observation I made recently for those who understand document management systems is tiddly wiki smart documents could operate as independant documents that have the document management system, standards, tools etc. . built in. Move the server management side into the documents themselves. It allows independence of your data while complying with standards to support collaboration and effective document management.
Tony
<style>
@page {
size: A4 landscape;
}
table { page-break-inside:auto }
div { page-break-inside:avoid; } /* This is the key */
thead { display:table-header-group }
tfoot { display:table-footer-group }
</style>
<table>
<thead>
<tr>
<th>heading</th>
</tr>
</thead>
<tbody>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="A Gentle Guide to TiddlyWiki" mode="block"/></div></td>
</tr>
<tr>
<td><div><$transclude tiddler="Some of the things you can do with TiddlyWiki" mode="block"/></div></td>
</tr>
<!-- 500 more rows -->
<tr>
<td>x</td>
</tr>
</tbody>
<tfoot>
<tr><td>notes</td></tr>
</tfoot>
</table>