I use an Applescript to copy the selected text and hyperlink
for pasting into a new document
tell application id "DNtp"
set theOriginalNote to item 1 of (get selection)
tell application "System Events" to keystroke "c" using {command down}
set theSelectedText to the clipboard
set theOriginalLink to reference URL of theOriginalNote
...
end tell