1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 09:43:16 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/howtos/Generating Static Sites with TiddlyWiki.tid

36 lines
1.8 KiB
Plaintext
Raw Normal View History

2014-02-28 15:48:12 +00:00
created: 20130828190200000
modified: 20141013085608911
2014-09-12 15:05:37 +00:00
tags: [[TiddlyWiki on Node.js]]
2014-02-28 15:48:12 +00:00
title: Generating Static Sites with TiddlyWiki
type: text/vnd.tiddlywiki
TiddlyWiki5 can be used to generate static HTML representations of a TiddlyWiki that doesn't need JavaScript.
There is much flexibility in how the static HTML is generated. The following scenarios are all illustrated on http://tiddlywiki.com.
! Wiki Snapshots and Tiddler Snapshots
You can explore a static representation of this TiddlyWiki at <a href="static.html">static.html</a>. That file is a static snapshot of the current DefaultTiddlers. Any tiddlers that it links to are referred to via URLs of the form `/static/HelloThere.html` that point to static snapshots of individual tiddlers. The tiddler HTML files reference a `static.css` stylesheet file.
The following commands are used to generate the sample static version of the TiddlyWiki5 site:
2014-02-28 15:48:12 +00:00
```
--rendertiddler $:/core/templates/static.template.html static.html text/plain
--rendertiddler $:/core/templates/static.template.css static/static.css text/plain
--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html static text/plain
2014-02-28 15:48:12 +00:00
```
The first RenderTiddlerCommand saves the static version of the DefaultTiddlers, the second saves the stylesheet, and the final RenderTiddlersCommand generates the HTML representations of individual tiddlers. (All the files are placed in the `output` folder of the wiki folder).
2014-02-28 15:48:12 +00:00
! Wiki Snapshot with Internal Links
It is also possible to produce a single HTML file that contains static representations of tiddlers, and uses standard HTML anchor links to jump between them.
For example: <a href="alltiddlers.html">alltiddlers.html</a>
2014-10-17 15:29:27 +00:00
The example is built by the following commands:
2014-02-28 15:48:12 +00:00
```
--rendertiddler $:/core/templates/alltiddlers.template.html alltiddlers.html text/plain
2014-02-28 15:48:12 +00:00
```