You paste a ChatGPT response into Google Docs, Word, or an email, and you see **important deadline** instead of important deadline. Or *please review* instead of please review. What's going on?
The short answer
ChatGPT writes in markdown, a text formatting language. In markdown, double asterisks (**text**) mean bold and single asterisks (*text*) mean italic. These are instructions for a markdown renderer, not the formatted text itself.
When you paste into apps that don't understand markdown (which is most of them), the asterisks appear as literal characters instead of being converted to bold or italic formatting.
The longer answer
Here's what's happening step by step:
- You ask ChatGPT a question
- ChatGPT generates a response in markdown format
- ChatGPT's web interface renders the markdown into formatted text (you see bold, not asterisks)
- You copy the text from the screen
- Depending on how you copy, your clipboard gets either:
- The rendered HTML (with some formatting, but often with unwanted styling like gray backgrounds)
- The raw markdown (via ChatGPT's copy button)
- You paste into your destination app
- The app doesn't know what to do with the asterisks and displays them literally
Which apps show asterisks?
| App | Shows asterisks? | Why |
|---|---|---|
| Google Docs | Sometimes | Detects bold ** occasionally, but unreliably |
| Word | Yes | No markdown detection at all |
| Gmail | Yes | No markdown support |
| Outlook | Yes | No markdown support |
| Slack | No (different problem) | Uses single * for bold, so **double** breaks differently |
| OneNote | Yes | No markdown detection |
The three types of asterisk problems
Double asterisks: **bold text**
This is markdown bold. You should see bold text but instead see the literal asterisks.
Single asterisks: *italic text*
This is markdown italic. You should see italic text but instead see the asterisks.
Triple asterisks: ***bold italic***
This is markdown bold+italic. You should see bold italic but instead see three asterisks on each side.
How to fix it
Quick fix: manual reformatting
Select the text between the asterisks, apply bold (Ctrl+B) or italic (Ctrl+I), then delete the asterisks. This works for one or two instances but is tedious for a full response.
Proper fix: convert before pasting
Unmarkdown™ converts all markdown formatting symbols to proper rich text for your destination app:
- Copy the ChatGPT response
- Paste into unmarkdown.com
- Choose your destination (Google Docs, Word, Email, etc.)
- Paste the result: bold is bold, italic is italic, no asterisks
This handles not just asterisks but also hash marks (headings), pipe characters (tables), backticks (code), and all other markdown symbols.
Other symbols you might see
Asterisks aren't the only markdown symbols that leak through:
#,##,###before text: These are headings|characters in rows: These are tables`or```: These are code formatting~~text~~: This is strikethrough> text: This is a blockquote-or1.at line starts: These are list items
All of these are markdown formatting instructions that your destination app doesn't understand. Unmarkdown™ converts all of them.
Why ChatGPT uses asterisks for bold
Markdown was designed to be readable as plain text. The creator, John Gruber, chose **text** for bold because it visually suggests emphasis without requiring a rendering engine. In 2004, this was elegant.
In 2026, with billions of people using AI tools that output markdown and pasting into apps that don't read it, the asterisks have become the most visible symptom of the markdown/rich-text gap.
Related
- Why ChatGPT Output Looks Terrible When You Paste It (And How to Fix It)
- What Is Markdown and Why Does Every AI Tool Use It?
- 5 Things That Break When You Paste AI Output (And How to Fix Each One)
- The AI Formatting Problem Nobody Talks About
- Why Obsidian Loses Formatting When You Copy-Paste (and How to Fix It)
- The Markdown Cheat Sheet You'll Actually Use
