Hi,
I’m using TW with Node.js (not sure yet if I’m using it the right way or not), there’s a lot to learn, and I’ve reached the point where I’ve set up a local network with Nextcloud for the computers, and I’m using Tiddloid to edit with the slavephone. The next day, I import those notes.
But I want to exclude tiddlers with the field status: review
(or something like that) from the dist/index.html
.
Is there a way to do this? This is what I have (I think I’ve installed the empty version):
"build": {
"index": [
"--render",
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
"index.html",
"text/plain"
],
And this is what I tried:
"build": {
"index": [
"--render",
"[!field:status[review]]",
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
"index.html",
"text/plain"
],
The result is that the tiddler with that field still shows up in dist/index.html
, and all tiddlers are not editable.
Thanks!