1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-30 07:50:47 +00:00

Merge pull request #1207 from dullroar/master

Altered command order for generating static sites in TW5.com how-to
This commit is contained in:
Jeremy Ruston 2014-12-07 22:14:43 +00:00
commit 71535c6691
2 changed files with 3 additions and 1 deletions

View File

@ -15,9 +15,9 @@ You can explore a static representation of this TiddlyWiki at <a href="static.ht
The following commands are used to generate the sample static version of the TiddlyWiki5 site: The following commands are used to generate the sample static version of the TiddlyWiki5 site:
``` ```
--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html static text/plain
--rendertiddler $:/core/templates/static.template.html static.html text/plain --rendertiddler $:/core/templates/static.template.html static.html text/plain
--rendertiddler $:/core/templates/static.template.css static/static.css text/plain --rendertiddler $:/core/templates/static.template.css static/static.css text/plain
--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html static text/plain
``` ```
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). 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).

View File

@ -186,3 +186,5 @@ Felix Küppers, @felixhayashi, 2014/11/02
Jedediah Carty, @inmysocks, 2014/11/21 Jedediah Carty, @inmysocks, 2014/11/21
Erwan Dano, @Braincoke, 2014/11/24 Erwan Dano, @Braincoke, 2014/11/24
Jim Lehmer, @dullroar, 2014/12/07