I just tested my local view template tool, and as soon as I introduce a second line to the extra multi-line field to a tiddler if now saves the tiddler as a JSON.
Now keep in mind this is totally automatic and can only impact a process that makes an assumption the tiddler on disk is a .tid file. Otherwise it can now be found as a .json and the interactive wiki works as usual.
If you install Local-Viewtemplate.json (4.5 KB) then in any tiddler add a local-viewtemplate
field in the editor the new, additional, multi-line field editor becomes visible. If you look in the package all the information is available how to replicate this.
- This package helps designing because you can test how a view template tiddler will look, but only on the current tiddler.
- It is an example of an additional multi-line text field.
tid form
created: 20250713230557683
modified: 20250713230647727
object-type: todo
tags: Inbox todo
title: target.tiddler
type: text/vnd.tiddlywiki
Tiddler to include multi-line content
JSON form once added local-viewtemplate field but only once \n implied.
[
{
"created": "20250713230557683",
"text": "Tiddler to include multi-line content",
"tags": "Inbox todo",
"title": "target.tiddler",
"modified": "20250713231438862",
"type": "text/vnd.tiddlywiki",
"object-type": "todo",
"local-viewtemplate": "!Local view Template\n* new item"
}
]