by Ivijan-Stefan Stipic
1 (1 reviews)
MarkuClean - AI Markup Cleaner
Clean and sanitize AI-generated HTML content without breaking WordPress, Gutenberg or Elementor.
Tested up to WP 6.9 (Current: 7.0.1)
v1.0.0
Current Version v1.0.0
Updated 4 months ago
Last Update on 13 Mar, 2026
Refreshed 7 hours ago
Last Refreshed on
Rank
#50,486
—
No change
Active Installs
1+
—
No change
KW Avg Position
2
—
No change
Downloads
36
+2 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(1 reviews)
Next Milestone 10
0+
10+
49,522
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 7 more installs to reach 10+
Rank Changes
Current
#50,486
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
1 reviews
Overall
20%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| blockeditor | 2 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.0
- Last Updated
- Mar 13, 2026
- Requires WP
- 5.8+
- Tested Up To
- 6.9
- PHP Version
- 8.0 or higher
- Author
- Ivijan-Stefan Stipic
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about MarkuClean - AI Markup Cleaner
No. The plugin does not touch block comments or block JSON attributes.
No. Elementor data attributes remain untouched. Only AI-specific numeric data-start and data-end attributes are removed.
No. Only data-start and data-end when numeric.
Yes, if the plugin version includes the advanced option in settings.
Yes. The plugin provides several WordPress filters that allow developers to change default behavior, extend cleanup rules, and control where cleanup is applied. Below is a list of available filters and practical usage examples.
Use the aicc_default_enabled_post_types filter. By default, the plugin enables cleanup for post. You can change that default list like this: aicc_default_enabled_post_types Example: <?php add_filter('aicc_default_enabled_post_types', function (array $defaults): array { return ['post', 'page', 'product']; }); ?> Use this when you want the plugin to automatically start with more post types enabled on first save or fresh installation.
Use the aicc_available_post_types filter. This filter lets you modify the list of post types shown in the admin settings screen. aicc_available_post_types Example: <?php add_filter('aicc_available_post_types', function (array $postTypes): array { if (isset($postTypes['attachment'])) { return $postTypes; } $attachment = get_post_type_object('attachment'); if ($attachment instanceof WP_Post_Type) { $postTypes['attachment'] = $attachment; } return $postTypes; }); ?> Use this when you want to re-include post types hidden by default, such as attachment, or remove custom post types from the UI.
Use the aicc_display_apply_to_all_queries filter. By default, front-end display cleanup is limited to the main query. This filter allows cleanup for secondary queries too. aicc_display_apply_to_all_queries Example: <?php add_filter('aicc_display_apply_to_all_queries', function (bool $applyAll, WP_Query $query): bool { return true; }, 10, 2); ?> Use this if your theme or page builder renders content through custom WP_Query loops and you want the cleanup to apply there too.
Use the aicc_sanitized_output filter. This filter runs on the final cleaned string and allows last-step adjustments based on context. aicc_sanitized_output Example: <?php add_filter('aicc_sanitized_output', function (string $output, string $context): string { if ($context === 'title') { $output = trim($output); } return $output; }, 10, 2); ?> Possible contexts include values such as title, content, and excerpt. Use this when you want to apply final project-specific formatting after the plugin finishes cleanup.
Use the aicc_character_replacements filter. The plugin contains a default replacement map for problematic characters and formatting artifacts. You can extend or change that map. aicc_character_replacements Example: <?php add_filter('aicc_character_replacements', function (array $map, string $context): array { $map['“'] = '"'; $map['”'] = '"'; $map['’'] = "'"; $map['—'] = '-'; return $map; }, 10, 2); ?> Use this when you want stricter typography normalization or custom replacements for your editorial workflow.