Need AI Training/Help?CloudYeti.io/meet
MarkdownMe
Rich Text to Markdown guide

Convert a Google Doc to Markdown by Pasting It

Google Docs puts a b style=font-weight:normal wrapper around every copied selection. Left in place it bolds the entire document. This tool removes it before converting.

Direct answer

Select the content in the Google Doc, copy it, then paste into the box above. The tool reads the clipboard's HTML flavour, removes the <b style="font-weight:normal"> wrapper Google Docs adds around the whole selection, unwraps its per-run spans, and converts the rest to Markdown. Without that cleanup, a naive converter marks the whole document as bold.

Open the Rich Text to Markdown converter

When to use this

  • A doc needs to become a README, a blog post, or a repository file.
  • A previous paste-to-Markdown attempt produced text wrapped in asterisks from top to bottom.
  • You want the doc structure without installing a Docs add-on or exporting a file.

Steps

  1. Open the Google Doc and select the content with Ctrl+A or a manual selection.
  2. Copy with Ctrl+C.
  3. Click the paste box above and press Ctrl+V.
  4. Leave 'Clean up extra blank lines' on; Docs emits an empty paragraph between blocks.
  5. Copy the Markdown, or download it as a .md file.

Example conversion

Pasted source
(A Google Docs selection: a title, two paragraphs, and a numbered list)
Markdown output
# Launch plan

We ship on Thursday.

1. Freeze the branch
2. Run the smoke tests
3. Publish the release notes

Common mistakes

  • Do not use File, Download, Web page and then paste that HTML here. That path is for the HTML to Markdown tool; this one wants the copied content itself.
  • Do not expect images to work. A copied Docs image points at a googleusercontent URL that may need a signed-in session, so replace those references.
  • Do not expect suggestions or comments. They are not part of the copied selection.
  • Do not paste from the Docs mobile app and expect the same result; the mobile clipboard often carries plain text only, and the tool then falls back to that text unchanged.

FAQ

Why does pasted Google Docs content come out entirely bold?
Google Docs wraps the copied selection in a <b> element with an inline style of font-weight:normal. Converters that read the tag and ignore the style treat everything inside as bold. This tool rewrites that wrapper before conversion.
Does this need a Google account or an add-on?
No. It reads what your clipboard already holds after a normal copy. There is no Google sign-in and no add-on to install.
What happens when the clipboard has no HTML?
The tool falls back to the plain-text flavour and shows it with invisible characters removed. The status line under the paste box tells you which flavour was used.

Related paste-to-Markdown guides