Skip to content

Commit

Permalink
Revert this one-off change
Browse files Browse the repository at this point in the history
  • Loading branch information
srtfisher committed Feb 18, 2025
1 parent ecf1945 commit 88cb20d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/class-block-converter.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function convert_node( DOMNode $node ): ?Block {
'h1', 'h2', 'h3', 'h4', 'h5', 'h6' => $this->h( $node ),
'p', 'a', 'abbr', 'b', 'code', 'em', 'i', 'strong', 'sub', 'sup', 'span', 'u' => $this->p( $node ),
'figure' => $this->figure( $node ),
'br', 'source', 'cite' => null,
'br', 'cite', 'source' => null,
'hr' => $this->separator(),
default => $this->html( $node ),
};
Expand Down

0 comments on commit 88cb20d

Please sign in to comment.