← Back to Blog
July 13, 2026 Clasp

I Pasted a Sentence From a Website Into an Email and Spent 90 Seconds Fixing the Font. Then I Found the Actual Solution.

Every Mac user has done it: copy a line from a webpage, paste it into a document or email, and watch it arrive with its original font, color, and size — completely clashing with everything around it. The workarounds Apple gives you are technically functional and practically useless. Here’s what actually works.

The Problem Is Worse Than It Looks

When you copy text from a website, your clipboard doesn’t just capture the words. It captures everything the browser knows about how to render them: font family, font size, color, line height, background color, sometimes even link underlines. Paste that into Google Docs and you get a visual crime scene. Paste it into a rich-text email and you’re suddenly sending a message in Helvetica 18px while everything else is in your company’s email font.

I work across a lot of apps — Notes for drafts, Notion for project docs, Apple Mail for actual emails, VS Code for code comments, Slack for messages. Roughly 30–40% of my pastes are from websites. Which means this isn’t an occasional annoyance. It’s a constant one. I was either accepting weird formatting, or spending time fixing it, or developing a muscle-memory habit of the cleanup ritual.

I asked around. Everyone had their own workaround. Nobody’s workaround was good.

The Workarounds That Don’t Actually Work

Here’s the standard advice you’ll find online, and why each one falls apart in practice:

  • ⌘+Shift+V (Paste and Match Style): This is Apple’s official answer, and it works in exactly the apps where you need it least. It works in TextEdit, Pages, Notes. It does not work in Google Docs (Cmd+Shift+V triggers something different). It doesn’t work in Notion. It doesn’t work in most Electron apps. So you can’t actually build a muscle memory around it because it fails randomly.
  • Edit › Paste and Match Style from the menu: Technically always there in apps that support it. Practically: you have to stop, move your mouse, open a menu, click a submenu item. By the time you’ve done this three times, you’ve accepted that formatting cleanup is just part of the job.
  • Paste into TextEdit first, then copy, then paste: This is the “it works but it’s ridiculous” approach. Open TextEdit, set it to plain text mode (Format › Make Plain Text), paste, re-copy. Add 15 seconds to every paste. This is the computing equivalent of photocopying a fax to read it.
  • Paste as plain text extensions and utilities: There are several browser extensions and menu bar apps that strip formatting on paste. Some work in a browser but not in native apps. Most require separate keyboard shortcuts that conflict with existing bindings. I tried three of them over the past two years and ended up uninstalling all three.

The core problem with all of these: they’re parallel systems. You have to decide before you paste whether you want plain text or rich text, then execute a different action for each case. That decision overhead is where the friction lives.

How a Clipboard Manager Actually Solves This

A clipboard manager like Clasp intercepts your clipboard at the system level, which means it can expose the same copied item in multiple formats simultaneously. When you copy text from a webpage, Clasp stores both the rich-text version and a clean plain-text version. You pick which one to paste at paste time, not copy time.

In practice: you open Clasp’s clipboard history (keyboard shortcut, works system-wide), select the item you want, and hit Enter to paste normally or a modifier to paste as plain text. Same shortcut, everywhere, every time. Google Docs, Notion, Slack, Apple Mail, VS Code — it doesn’t matter. The plain-text paste works the same way in all of them because it’s being handled by Clasp at a layer above any individual app.

What I noticed after about a week of using this: I stopped thinking about it. The decision “do I want rich text or plain text?” became a two-second action instead of a 15-second ritual. The fact that I was still pasting correctly in Notion even though ⌘+Shift+V doesn’t work there was specifically the thing that made me stop questioning whether it was worth keeping.

The Part I Didn’t Expect: Clipboard History

Solving the plain-text problem was what made me download Clasp. The clipboard history is what made me pay for it.

Here’s a scenario that happens to me maybe twice a week: I copy something, immediately copy something else (overwriting it), then realize I needed the first thing. With the native macOS clipboard, that item is gone. Permanently. The only recovery is going back to wherever you got it and copying it again — which is fine if that’s a webpage that’s still open, and a problem if it was a temporary API response, a file path from a terminal command, or text from a PDF you’ve since closed.

Clasp keeps your last several hundred clipboard items. Open the history, find the item from 20 minutes ago, paste it. The whole thing takes about four seconds. I’ve used it for terminal output, error messages I wanted to paste into a Slack thread, database IDs I copied while setting something up, and draft sentences I threw out and then wanted back. It’s the kind of feature where you don’t know what you were missing until you have it, and then you can’t imagine going back.

Snippets: The Other Thing Worth Knowing

Clasp also does text expansion — you type a short abbreviation and it replaces it with a longer saved snippet. I use this for email templates, boilerplate SQL, code comments I repeat often, and my home address. Not exactly groundbreaking in concept, but the thing that makes it work in practice is that the snippets live in the same interface as the clipboard history. You’re not switching between two different apps or two different keyboard shortcuts depending on whether you want a recent paste or a saved snippet.

I have around 85 snippets now. About 30 are things I use daily, the rest are things I needed once and saved because the friction to save was low enough that it made sense. The whole collection is searchable — type a word and the matching items surface instantly, whether they’re in clipboard history or saved snippets.

Clasp — clipboard manager and text expander for Mac, iPhone and iPad

Plain-text paste that works everywhere, full clipboard history, smart search, and text snippets. Free to download.

Download Free

The Real Problem Was Never the Shortcut

I spent a long time thinking the paste-without-formatting problem was a keyboard shortcut problem. I just needed to memorize the right key combo. The issue was that the shortcut didn’t exist consistently. ⌘+Shift+V works in some apps. Something different works in others. Nothing reliable works everywhere. So no amount of shortcut memorization was going to fix it — the solution had to operate at a level above any individual app.

The clipboard manager approach is exactly that: it processes what you paste before the destination app even sees it. The app gets the plain text and has no idea anything happened. That’s why it works in Google Docs and Electron apps and web views and every other app that ignores ⌘+Shift+V. It’s not asking for the app’s cooperation. It’s just handling the paste itself.

I found this out while looking for a plain-text paste solution and ended up with something that also solved a clipboard history problem I’d accepted as permanent. That’s usually how the best utility apps work — you find them solving one thing and they quietly fix three others.