
When you copy content from Google Docs and paste it into WordPress, you get messy HTML like this:
<span style="font-weight: 400;">Your perfectly normal text.</span>
And list items end up looking like this:
<li style="font-weight: 400;" aria-level="1">A simple bullet point.</li>
None of this formatting does anything visible on your site. It just clutters your markup and can cause issues with themes and page builders.
This plugin automatically strips that junk every time you save a post or page.
What it cleans:
<span style="font-weight: 400;"> wrappers (keeps the text inside, removes the span)style="font-weight: 400;" on list itemsaria-level attributes on list items (Google Docs nesting markers that WordPress doesn’t need)What it does NOT touch:
<code> or <pre> blocks (safe for tutorial sites that show HTML examples)No settings. No admin page. No JavaScript. Just one lightweight filter that runs on save.
Trademark notice: This plugin is not affiliated with, endorsed by, or sponsored by Google LLC. “Google Docs” is a trademark of Google LLC and is used here only to describe the source of the formatting this plugin cleans up.