Skip to content

Personal Knowledge Management Conversion Notes#

Kindle#

Obsidian Kindle Importer

Notion Export#

OneNote Export#

Well this is a hellish nightmare. From best to worst:

Old Approach#

  • cinst -y pandoc

  • OneNote 2016 + OneNoteBatch to batch export to docx/html

  • pandoc export command (also supports commonmark/gfm as markdown flavors)

PowerShell
Get-ChildItem -Path './process/pendingdocx/*.docx' | % { 
  pandoc.exe --extract-media "process_markdown/assets" -s $_.FullName --wrap=none --reference-links -t commonmark_x -o "process_markdown/$($_.BaseName).md" 
}