This may be handy for other users of the fabulous NetNewsWire RSS reader from @brentsimmons — an Applescript to grab an article summary and its link and mash them together ready for further editing after pasting:

tell application "NetNewsWire"
	tell current article
		set mySummary to summary
		set myLink to permalink
		set myReport to "x" & myLink & mySummary
		set the clipboard to myReport as string
	end tell
end tell
Screenshot of the actual Applescript.
Screenshot of the actual Applescript.