diff --git a/src/class-block-converter.php b/src/class-block-converter.php index 77e1897..d327cd4 100644 --- a/src/class-block-converter.php +++ b/src/class-block-converter.php @@ -289,8 +289,6 @@ protected function blockquote( DOMNode $node ): ?Block { * @return Block|null */ protected function p( DOMNode $node ): ?Block { - // Account for some specific edge cases. - // Use case 1: image wrapped with an anchor tag. This should be converted to an image block. if ( $this->is_anchor_wrapped_image( $node ) ) { return $this->img( $node ); }