Hi guys. I recently found this post which is about loading a folder of .md files as tiddlers.
Here are my settings.
I put the tiddlywiki.files under .\tiddlers
```
{
"directories": [
{
"path": "./TheVault",
"filesRegExp": "^.*\\.md$",
"isTiddlerFile": true,
"fields": {
"title": {"source": "basename"},
"created": {"source": "created"},
"modified": {"source": "modified"},
"type": "text/x-markdown"
}
}
]
}
```
I tried to move the tiddlywiki.files inside the `The Vault` folder and change the path to "path": "./",. However, when I load too many .md files (more than around 50), I will not be able to open the wiki and error is shown.
Is there any way that I can keep my plugins and other tiddlers?
Thank you very much.