-
I am using in browser plugin development with Tiddlywiki running on Node.JS using the below configs. $:/config/FileSystemPaths
$:/config/FileSystemExtensions contains
I have an update button to create or update (overwrite) the plugin.info for me. The plugin info is created in a tiddler like this
Then the file is saved in a proper location using the above configs! The issue here is I have always one tiddler in my wiki (
I am wondering why I have plugin_1.info when there is no such tiddler in my wiki? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Normally, the .info file data is not accessible from within tiddlywiki, so this is interesting. Something is happening there where TW is attempting to write to that location without having loaded that tiddler's data from that location. Did you load the .info file by having an accompanying .info.meta file, or was it loaded in some other way? (A tiddlywiki.files file?) |
Beta Was this translation helpful? Give feedback.
-
Ah I removed the
from $:/config/FileSystemPaths and kept the It seems the problem has gone! I think as I used two rules the issue happened! Thank you Joshua |
Beta Was this translation helpful? Give feedback.
Ah I removed the
from $:/config/FileSystemPaths and kept the
$:/config/FileSystemExtensions
intact!It seems the problem has gone! I think as I used two rules the issue happened!
Thank you Joshua