obsidianmd / obsidian-importer

Obsidian Importer lets you import notes from other apps and file formats into your Obsidian vault.
https://help.obsidian.md/import
MIT License
709 stars 66 forks source link

[OneNote] Importer does not respect the "Use [[Wikilinks]]" setting #265

Open FeralFlora opened 3 months ago

FeralFlora commented 3 months ago

image

Even though I have the "Use [[Wikilinks]]" toggle enabled, all my image embeds are in markdown link format. This seems to be due to the use of htmlToMarkdown:

https://github.com/obsidianmd/obsidian-importer/blob/4be63256cae2c5d852ee1ed75f50d81b87f801c2/src/formats/onenote.ts#L321

https://github.com/obsidianmd/obsidian-importer/blob/4be63256cae2c5d852ee1ed75f50d81b87f801c2/src/formats/html.ts#L221

The file link is also hardcoded to be URI encoded, which is not necessary in wikilinks: https://github.com/obsidianmd/obsidian-importer/blob/4be63256cae2c5d852ee1ed75f50d81b87f801c2/src/formats/onenote.ts#L543