I notice that some of internal links in my notes are suddenly disappearing. I am not a lunatic, the problem is not me. It happens at random time, and i the only thing i can do is seeing it already happened in version history.
Here is the list of plugins i use. One day i noticed i think that links that always disappear convert to markdown look .(). even though i use wikilinks like this []. I use paid version of Obsidian Sync. I have the only script for creating Daily Notes.
```dataviewjs
const moment = window.moment;
const currentDate = moment().format("YYYY-MM-DD");
const fileName = `Daily notes/${currentDate}.md`;
if (!app.vault.getAbstractFileByPath(fileName)) {
const template = app.vault.getAbstractFileByPath("templates/Daily note template.md");
if (template) {
app.vault.read(template).then(content => {
app.vault.create(fileName, content);
console.log(`Created daily note for ${currentDate}`);
});
} else {
app.vault.create(fileName, `# ${currentDate}\n\n`);
console.log(`Created empty daily note for ${currentDate}`);
}
}
Please ask me the missing information that i should provide.