macOS Sequoia wraps copied pathnames in single quotes,
breaking pasted links in MacDown and other Markdown editors which expect unescaped paths:
Anthony Reimer provides an overview of the issue, followed by a helpful workaround:
Open Automator → Quick Action → Choose
Set "Workflow receives current" to files or folders in Finder
Add a Run AppleScript action with:
on run {input} tell application "Finder" to get POSIX path of first item of (selection as alias list) return input end run
Add a Copy to Clipboard action
Save as Copy Unescaped Path (saves to
~/Library/Services/
and appears in Finder's context menu under Quick Actions)Assign a shortcut via System Settings → Keyboard → Keyboard Shortcuts… → Services → Files and Folders
❧ 2025-04-24