mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 23:56:18 +00:00
8a47eb2d03
* Update commands in "Generating Static Sites with TiddlyWiki" to use render command & add deprecated tag to some command * Remove timestamp in deprecated commands
38 lines
2.1 KiB
Plaintext
38 lines
2.1 KiB
Plaintext
created: 20130828190200000
|
|
modified: 20241007003103647
|
|
tags: [[TiddlyWiki on Node.js]]
|
|
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.
|
|
This process requires that TiddlyWiki be installed on Node.js on your local system. See [[Installing TiddlyWiki on Node.js]] for
|
|
details.
|
|
|
|
There is much flexibility in how the static HTML is generated. The following scenarios are all illustrated on https://tiddlywiki.com.
|
|
|
|
! Wiki Snapshots and Tiddler Snapshots
|
|
|
|
You can explore a static representation of the main TiddlyWiki site at https://tiddlywiki.com/static.html. 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:
|
|
|
|
```sh
|
|
tiddlywiki wikipath --render '[!is[system]]' '[encodeuricomponent[]addprefix[static/]]' text/plain $:/core/templates/static.tiddler.html
|
|
tiddlywiki wikipath --render $:/core/templates/static.template.html static.html text/plain
|
|
tiddlywiki wikipath --render $:/core/templates/static.template.css static/static.css text/plain
|
|
```
|
|
|
|
The first RenderCommand generates the HTML representations of individual tiddlers, `[encodeuricomponent[]addprefix[static/]]` applies URI encoding to each title, and then adds the prefix `static/`. The second RenderCommand saves the static version of the DefaultTiddlers, and the final RenderCommand saves the stylesheet. (All the files are placed in the `output` folder of the wiki folder).
|
|
|
|
! 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: https://tiddlywiki.com/alltiddlers.html
|
|
|
|
The example is built by the following commands:
|
|
|
|
```
|
|
--render $:/core/templates/alltiddlers.template.html alltiddlers.html text/plain
|
|
```
|