You copy an answer, paste it into your document — and get **double asterisks**, ##hashtags and half-broken bullets. Here is why, and three ways to fix it.
Updated August 2026 · 4 minute read
ChatGPT, Claude and Gemini all write their answers in Markdown internally. The chat interface renders that Markdown as pretty formatting — but what lands on your clipboard when you press copy depends on how much of it the app exposes.
Paste into Word or Google Docs and you typically get one of two messes:
**bold**, # Heading, - bullet, backticks around code — the raw markup arrives as literal characters because the clipboard held plain text.
The paste looks styled at first glance, but headings are just bold body text, lists aren't real lists, tables arrive as misaligned columns of text — useless for reports and impossible to restyle cleanly.
Either way, someone has to fix it by hand — every single time.
Ctrl+Shift+V (or Cmd+Shift+Option+V on Mac) strips everything — including structure. You then manually apply heading styles, rebuild bullet lists and re-create tables. Fine for two paragraphs; painful for a report-length answer.
You can prompt the model to "answer without Markdown formatting". It helps with symbols but destroys useful structure — you still get no real headings or lists in Word, and long answers drift back into Markdown anyway.
Clean Copy converts the selected answer before it reaches the clipboard. Select the response → right-click → Clean Copy. What you paste into Word or Google Docs has real headings, working lists and clean quotes — no symbols to hunt down afterwards. Free, runs entirely in your browser.
On a shared or locked-down computer, open Clean Copy Web: paste the messy AI answer, click convert, copy back clean text or Markdown. Nothing is uploaded — the conversion happens in your browser tab. There's also a one-click bookmarklet if you prefer zero installs.
Yes. All major chat assistants emit Markdown. Any tool that converts Markdown to clean text at the clipboard works the same way regardless of which assistant the text came from.
Clean Copy converts simple HTML tables from rendered chat output; complex tables may need touch-up after pasting. For best results select only the table portion and use the Markdown mode.
No. The conversion happens locally in your browser. No text is uploaded to any server.
Related: Convert web pages to Markdown from the terminal — For developers who live in the shell.