SideNotes App Integration?

There is an app called SideNotes. I’ve used the trial version. I couldn’t find any integration with the Drafts app. The drafts app is the main app for me. Anyone using SideNotes? And is it possible to invoke drafts in this manner at least on the Mac?

https://www.apptorium.com/sidenotes/release-notes/1.4

1 Like

For future reference here is an AppleScript to convert all SideNotes notes to Drafts:

tell application "SideNotes"
	set side_notes_folders to get every folder
	repeat with f in side_notes_folders
    	set side_notes_notes to get notes in f
    	repeat with n in side_notes_notes
    		tell application "Drafts"
    			make new draft with properties {content:get text of n, createdAt:get date of n, modifiedAt:get date of n}
    		end tell
    	end repeat
end tell