How was this wiki created? Was it by any chance converted from a single file wiki to a folder wiki?
Possibly? I can’t remember at this point, it goes back to before COVID, and to a time when I didn’t know much about TW .
I think converting it to a single-file wiki and then back again (after having deleted $:/core
) fixed the problem. Here are the files that are different in the new folder wiki structure (binary compare on all files, left side broken wiki, right side working wiki):
https://drive.google.com/file/d/11VGpig7rbROSu--aciqT0JF6RtmA52vJ/view?usp=sharing
I don’t see anything that odd, except that a number of plugins appear to have been included in the filesystem for some reason and removed when doing this, and a bunch of files had an extra .js
extension in the old one (probably there was a bug in my file pathing filter and I fixed it at some point, but the tiddlers weren’t updated in the meantime?).
What are the contents of the tiddlywiki.info file for this wiki?
{
"description": "Basic client-server edition",
"plugins": [
"tiddlywiki/codemirror",
"tiddlywiki/codemirror-autocomplete",
"tiddlywiki/codemirror-closebrackets",
"tiddlywiki/codemirror-keymap-vim",
"tiddlywiki/codemirror-search-replace",
"tiddlywiki/filesystem",
"tiddlywiki/highlight",
"tiddlywiki/katex",
"tiddlywiki/tiddlyweb"
],
"themes": [
"tiddlywiki/vanilla",
"tiddlywiki/snowwhite"
],
"build": {
"index": [
"--rendertiddler",
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
"index.html",
"text/plain"
],
"externalimages": [
"--savetiddlers",
"[is[image]]",
"images",
"--setfield",
"[is[image]]",
"_canonical_uri",
"$:/core/templates/canonical-uri-external-image",
"text/plain",
"--setfield",
"[is[image]]",
"text",
"",
"text/plain",
"--rendertiddler",
"$:/plugins/tiddlywiki/tiddlyweb/save/offline",
"externalimages.html",
"text/plain"
],
"static": [
"--rendertiddler",
"$:/core/templates/static.template.html",
"static.html",
"text/plain",
"--rendertiddler",
"$:/core/templates/alltiddlers.template.html",
"alltiddlers.html",
"text/plain",
"--rendertiddlers",
"[!is[system]]",
"$:/core/templates/static.tiddler.html",
"static",
"text/plain",
"--rendertiddler",
"$:/core/templates/static.template.css",
"static/static.css",
"text/plain"
]
}
}
Diff from broken to working:
I will have a peek in the git history and see if that happens to reveal anything about when the core tiddler got introduced into the filesystem.