Skip to content

Commit

Permalink
feat: add # to tag list (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
t18n committed Aug 29, 2024
1 parent d23b1ab commit 0f86bdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default class LinkdingImportPlugin extends Plugin {
}

if (bookmark.tag_names && bookmark.tag_names.length > 0) {
content += `Tags: ${bookmark.tag_names.join(' ')} \n\n--- \n`;
content += `Tags: ${bookmark.tag_names.join(' #')} \n\n--- \n`;
} else {
content += '\n--- \n';
}
Expand Down Expand Up @@ -221,4 +221,4 @@ class LinkdingImportSettingTab extends PluginSettingTab {
}));

}
}
}

0 comments on commit 0f86bdf

Please sign in to comment.