I’ve experienced a hard-crash recently and the only option given was to export all tiddlers in JSON.
It seems like the exported JSON does not fully conform to what TiddlyWiki’s import functionality expects. The result is that the tags field gets silently dropped on import:
Emergency export JSON format sample
[
{
"created": "2026-01-07T07:47:26.956Z",
"text": "blah blah",
"tags": [
"tagA",
"tagB"
],
"title": "Tiddler Name",
"modified": "2026-01-11T16:01:01.976Z"
}
]
Regular export for single tiddler sample
[
{
"created": "20260101000000000",
"text": "blah blah",
"tags": "tagA tagB",
"title": "Tiddler Name",
"modified": "20260101000000000",
}
]
The created and modified fields are also differently formated but this was not so impactful in my case. The tags getting silently dropped meant that most of my coded logic and all of the ViewTemplates where not applied.