alleyinteractive / wp-block-converter

Convert HTML into Gutenberg Blocks with PHP
GNU General Public License v2.0
40 stars 2 forks source link

Allow <embed> elements to be converted properly, fix blockquote format #25

Closed srtfisher closed 3 months ago

srtfisher commented 3 months ago

Fixes #24. Fixes #23

Will convert a string such as:

<embed type="video/webm" src="/media/mr-arnold.mp4" width="250" height="200" />

to a block:

<!-- wp:html --><embed type="video/webm" src="/media/mr-arnold.mp4" width="250" height="200"></embed><!-- /wp:html -->

Relates to #14. Also using this as a PR to upgrade the package's dependencies and align the actions to the organization's standards. The tests are now powered by a data provider.

srtfisher commented 3 months ago

Need to investigate why I had to modify the fake_request() call (upstream bug in the testing framework).