This pull request addresses the Obsidian integration issue related to filename determination in the background.js file. The problem was identified in the use of article.title, which did not adhere to the "Template for title/filename" setting. The fix involves replacing article.title with await formatTitle(article), ensuring proper alignment with user configuration preferences.
Changes Made
Modified Obsidian integration logic in background.js: replaced article.title with await formatTitle(article).
Description
This pull request addresses the Obsidian integration issue related to filename determination in the
background.js
file. The problem was identified in the use ofarticle.title
, which did not adhere to the "Template for title/filename" setting. The fix involves replacingarticle.title
withawait formatTitle(article)
, ensuring proper alignment with user configuration preferences.Changes Made
background.js
: replacedarticle.title
withawait formatTitle(article)
.Issue Reference
Closes #289