diff --git a/src/Content/Text/HTML.php b/src/Content/Text/HTML.php
index f5cf2c6eca..f29f4a148e 100644
--- a/src/Content/Text/HTML.php
+++ b/src/Content/Text/HTML.php
@@ -689,7 +689,7 @@ class HTML
public static function toMarkdown(string $html): string
{
DI::profiler()->startRecording('rendering');
- $converter = new HtmlConverter(['hard_break' => true]);
+ $converter = new HtmlConverter(['hard_break' => true, ‘strip_tags’ => true]]);
$markdown = $converter->convert($html);
DI::profiler()->stopRecording();