Skip to content

Commit

Permalink
Replace Deprecated renderTiddler with render command
Browse files Browse the repository at this point in the history
  • Loading branch information
kookma committed Oct 25, 2024
1 parent b6c8045 commit 0799b43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
created: 20131124220600000
modified: 20140912141637389
modified: 20241025051111864
tags: [[TiddlyWiki on Node.js]]
title: How to build a TiddlyWiki5 from individual tiddlers
type: text/vnd.tiddlywiki
Expand All @@ -14,4 +14,4 @@ First install TiddlyWiki as described in [[Installing TiddlyWiki on Node.js]].
##* Alternatively, just copy the `editions/empty` folder from the TiddlyWiki5 repo
# Create individual TiddlerFiles in the `~/MyWiki/tiddlers` directory
# Execute the following command from the TiddlyWiki5 root directory to build a TiddlyWiki5 file from the tiddlers:
## `tiddlywiki ~/MyWiki --rendertiddler $:/core/save/all index.html text/plain`
## `tiddlywiki ~/MyWiki --render $:/core/save/all index.html text/plain`
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
created: 20131219100520659
modified: 20220613172345723
modified: 20241025051303991
tags: [[TiddlyWiki on Node.js]]
title: Using TiddlyWiki on Node.js
type: text/vnd.tiddlywiki
Expand All @@ -9,7 +9,7 @@ type: text/vnd.tiddlywiki
For example, the following command loads the tiddlers from a ~TiddlyWiki HTML file and then saves one of them in static HTML:

```
tiddlywiki --verbose --load mywiki.html --rendertiddler ReadMe ./readme.html
tiddlywiki --verbose --load mywiki.html --render ReadMe ./readme.html
```

Running `tiddlywiki` from the command line boots the ~TiddlyWiki kernel, loads the core plugins and establishes an empty wiki store. It then sequentially processes the command line arguments from left to right. The arguments are separated with spaces.
Expand Down

0 comments on commit 0799b43

Please sign in to comment.