Matthew
Matthew
I didn't review the discussion on Discord, but suspect an alternate implementation could allow hiding specified tags/labels.
I see the releases page does have an exe in addition to the source code. https://github.com/respec/BASINS/releases/tag/HSPEXP%2B3.2
This is a show stopper for me. I'm going to try and see about modifying the plugin
I believe a fix to https://github.com/obsidianmd/obsidian-importer/blob/e2ad99f78a282bcefe01d3c5b287682a20c624aa/src/formats/onenote.ts#L255 is needed. The conditional `if (!page.title) page.title = `Untitled-${moment().format('YYYYMMDDHHmmss')}`;` May need to be replaced with something more like `if (!page.title || page.title.trim() === ""...
I patched the plugin with the above code and it appears to fix the issue. A larger test is stuck due to another issue which is the importer doesn't respect...