Just wanted to provide an update from my side. I decided to implement custom sync adaptor. My current code is in the attached file.
It works as expected if I have following files in the root directory of a web server
index.html --- built using edition which includes my iilyak/static plugin
tiddlers.json
```
[
{
"title": "HelloThere",
"tags": "FirstTag [[Second Tag]]",
"fields": {
"my-custom-field": "Field value"
}
}
]```
tiddlers/HelloThere
```
{
"created": "20191128223719980",
"modified": "20191128223730628",
"tags": "FirstTag [[Second Tag]]",
"text": "BlaBla",
"title": "HelloThere",
"type": "text/vnd.tiddlywiki",
"my-custom-field": "Field value"
}
```
In the next couple of days I would be trying to find a way how to generate independent json files and how to generate tiddlers.json
Best regards,
iilyak