akaalias / obsidian-journey-plugin

Discover the story between your notes in Obsidian
146 stars 7 forks source link

Thank you for your development. It has been simplified and modified. Please review it #3

Closed obsidian-canzi closed 3 years ago

obsidian-canzi commented 3 years ago
ResultsModal.prototype.createClipboardContent = function () {
    var result = "### 笔记旅程\n [[" + this.results.first() + "]] → [[" + this.results.last() + "]] 途经:\n";
    // @ts-ignore
    this.results.forEach(function (x) {
        result += "1. [[" + x + "]]\n";
    });
    return result;
};
akaalias commented 3 years ago

Hi @canzi-teacher – Thank you for your submission! I understand that you would like the option to automatically turn the note titles into markdown links. I personally prefer not to do that because it will create an MOC (map of content) where I don't want one.

How about this: I'll add it to the list of future features and let the community decide if this should be an option. I think some will want it. But not everyone.

Thanks!