mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Build/Tests Tools: Add unit tests for Gallery blocks.
Introduces unit tests for the following blocks * Gallery block with caption * Gallery block, deprecations 1 thru 7 Updates the unit tests for the following blocks to match the counterparts stored in the Gutenberg repository: * Gallery block * Gallery block with columns Modifies `Tests_Blocks_Render::test_do_block_output()` to ignore white space at the end of lines to account for whitespace equivalence in HTML. Props peterwilsoncc, isabel_brison, gziolo. Fixes #55571. git-svn-id: https://develop.svn.wordpress.org/trunk@55471 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
260a34646b
commit
4d3627fd2e
@ -0,0 +1,26 @@
|
||||
<!-- wp:gallery {"linkTo":"none"} -->
|
||||
<figure
|
||||
class="wp-block-gallery has-nested-images columns-default is-cropped columns-2"
|
||||
>
|
||||
<!-- wp:image {"id":1421,"sizeSlug":"large","linkDestination":"none","inheritedAttributes":{"linkDestination":true,"linkTarget":true,"sizeSlug":true}} -->
|
||||
<figure class="wp-block-image size-large">
|
||||
<img
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1421"
|
||||
/>
|
||||
</figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":1440,"sizeSlug":"large","linkDestination":"none","inheritedAttributes":{"linkDestination":true,"linkTarget":true,"sizeSlug":true}} -->
|
||||
<figure class="wp-block-image size-large">
|
||||
<img
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1440"
|
||||
/>
|
||||
</figure>
|
||||
<!-- /wp:image -->
|
||||
<figcaption class="blocks-gallery-caption wp-element-caption">Gallery Caption</figcaption>
|
||||
</figure>
|
||||
<!-- /wp:core/gallery -->
|
||||
@ -0,0 +1,46 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"images": [],
|
||||
"ids": [],
|
||||
"shortCodeTransforms": [],
|
||||
"caption": "Gallery Caption",
|
||||
"imageCrop": true,
|
||||
"fixedHeight": true,
|
||||
"linkTo": "none",
|
||||
"sizeSlug": "large",
|
||||
"allowResize": false,
|
||||
"className": "columns-2"
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190",
|
||||
"alt": "Image gallery image",
|
||||
"caption": "",
|
||||
"id": 1421,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580",
|
||||
"alt": "Image gallery image",
|
||||
"caption": "",
|
||||
"id": 1440,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,62 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"linkTo": "none"
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 1421,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none",
|
||||
"inheritedAttributes": {
|
||||
"linkDestination": true,
|
||||
"linkTarget": true,
|
||||
"sizeSlug": true
|
||||
}
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1421\"\n\t\t/>\n\t</figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1421\"\n\t\t/>\n\t</figure>\n\t"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 1440,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none",
|
||||
"inheritedAttributes": {
|
||||
"linkDestination": true,
|
||||
"linkTarget": true,
|
||||
"sizeSlug": true
|
||||
}
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1440\"\n\t\t/>\n\t</figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1440\"\n\t\t/>\n\t</figure>\n\t"
|
||||
]
|
||||
}
|
||||
],
|
||||
"innerHTML": "\n<figure\n\tclass=\"wp-block-gallery has-nested-images columns-default is-cropped columns-2\"\n>\n\t\n\n\t\n\t<figcaption class=\"blocks-gallery-caption wp-element-caption\">Gallery Caption</figcaption>\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure\n\tclass=\"wp-block-gallery has-nested-images columns-default is-cropped columns-2\"\n>\n\t",
|
||||
null,
|
||||
"\n\n\t",
|
||||
null,
|
||||
"\n\t<figcaption class=\"blocks-gallery-caption wp-element-caption\">Gallery Caption</figcaption>\n</figure>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
|
||||
]
|
||||
@ -0,0 +1,9 @@
|
||||
<!-- wp:gallery {"linkTo":"none","className":"columns-2"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped columns-2"><!-- wp:image {"id":1421,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large"><img src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190" alt="Image gallery image" class="wp-image-1421"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":1440,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large"><img src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580" alt="Image gallery image" class="wp-image-1440"/></figure>
|
||||
<!-- /wp:image --><figcaption class="blocks-gallery-caption wp-element-caption">Gallery Caption</figcaption></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,26 @@
|
||||
|
||||
<figure
|
||||
class="wp-block-gallery has-nested-images columns-default is-cropped columns-2 wp-block-gallery-1 is-layout-flex"
|
||||
>
|
||||
|
||||
<figure class="wp-block-image size-large">
|
||||
<img data-id="1421"
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1421"
|
||||
/>
|
||||
</figure>
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-image size-large">
|
||||
<img data-id="1440"
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1440"
|
||||
/>
|
||||
</figure>
|
||||
|
||||
<figcaption class="blocks-gallery-caption wp-element-caption">Gallery Caption</figcaption>
|
||||
</figure>
|
||||
|
||||
@ -1,14 +1,24 @@
|
||||
<!-- wp:gallery {"linkTo":"none","className":"columns-2"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped columns-2">
|
||||
<!-- wp:image {"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure
|
||||
class="wp-block-gallery has-nested-images columns-default is-cropped columns-2"
|
||||
>
|
||||
<!-- wp:image {"id":1421,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="https://cldup.com/uuUqE_dXzy.jpg" alt="Image gallery image" />
|
||||
<img
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1421"
|
||||
/>
|
||||
</figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<!-- wp:image {"id":1440,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="http://google.com/hi.png" alt="Image gallery image" />
|
||||
<img
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1440"
|
||||
/>
|
||||
</figure>
|
||||
<!-- /wp:image -->
|
||||
</figure>
|
||||
|
||||
@ -19,9 +19,10 @@
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "https://cldup.com/uuUqE_dXzy.jpg",
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190",
|
||||
"alt": "Image gallery image",
|
||||
"caption": "",
|
||||
"id": 1421,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
@ -31,9 +32,10 @@
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://google.com/hi.png",
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580",
|
||||
"alt": "Image gallery image",
|
||||
"caption": "",
|
||||
"id": 1440,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
|
||||
@ -9,44 +9,45 @@
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 1421,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"https://cldup.com/uuUqE_dXzy.jpg\" alt=\"Image gallery image\" />\n\t</figure>\n\t",
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1421\"\n\t\t/>\n\t</figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"https://cldup.com/uuUqE_dXzy.jpg\" alt=\"Image gallery image\" />\n\t</figure>\n\t"
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1421\"\n\t\t/>\n\t</figure>\n\t"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 1440,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"http://google.com/hi.png\" alt=\"Image gallery image\" />\n\t</figure>\n\t",
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1440\"\n\t\t/>\n\t</figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"http://google.com/hi.png\" alt=\"Image gallery image\" />\n\t</figure>\n\t"
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1440\"\n\t\t/>\n\t</figure>\n\t"
|
||||
]
|
||||
}
|
||||
],
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped columns-2\">\n\t\n\n\t\n</figure>\n",
|
||||
"innerHTML": "\n<figure\n\tclass=\"wp-block-gallery has-nested-images columns-default is-cropped columns-2\"\n>\n\t\n\n\t\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped columns-2\">\n\t",
|
||||
"\n<figure\n\tclass=\"wp-block-gallery has-nested-images columns-default is-cropped columns-2\"\n>\n\t",
|
||||
null,
|
||||
"\n\n\t",
|
||||
null,
|
||||
"\n</figure>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [
|
||||
"\n"
|
||||
]
|
||||
}
|
||||
]
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
|
||||
]
|
||||
|
||||
@ -1,3 +1,9 @@
|
||||
<!-- wp:gallery {"linkTo":"none","className":"columns-2"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped columns-2"><!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --><figure class="wp-block-image size-large"><img src="https://cldup.com/uuUqE_dXzy.jpg" alt="Image gallery image" /></figure><!-- /wp:image --><!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --><figure class="wp-block-image size-large"><img src="http://google.com/hi.png" alt="Image gallery image" /></figure><!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped columns-2"><!-- wp:image {"id":1421,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large"><img src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190" alt="Image gallery image" class="wp-image-1421"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":1440,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large"><img src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580" alt="Image gallery image" class="wp-image-1440"/></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
|
||||
@ -1,15 +1,25 @@
|
||||
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped columns-2 wp-block-gallery-1 is-layout-flex">
|
||||
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="https://cldup.com/uuUqE_dXzy.jpg" alt="Image gallery image" />
|
||||
</figure>
|
||||
|
||||
<figure
|
||||
class="wp-block-gallery has-nested-images columns-default is-cropped columns-2 wp-block-gallery-1 is-layout-flex"
|
||||
>
|
||||
|
||||
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="http://google.com/hi.png" alt="Image gallery image" />
|
||||
<img data-id="1421"
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1421"
|
||||
/>
|
||||
</figure>
|
||||
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-image size-large">
|
||||
<img data-id="1440"
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1440"
|
||||
/>
|
||||
</figure>
|
||||
|
||||
</figure>
|
||||
|
||||
|
||||
@ -1,14 +1,22 @@
|
||||
<!-- wp:gallery {"linkTo":"none","className":"columns-1"} -->
|
||||
<figure class="wp-block-gallery has-nested-images is-cropped columns-1" >
|
||||
<!-- wp:image {"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<!-- wp:gallery {"columns":1,"linkTo":"none"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-1 is-cropped">
|
||||
<!-- wp:image {"id":1421,"sizeSlug":"large","linkDestination":"none","inheritedAttributes":{"linkDestination":true,"linkTarget":true,"sizeSlug":true}} -->
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="https://cldup.com/uuUqE_dXzy.jpg" alt="Image gallery image" />
|
||||
<img
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1421"
|
||||
/>
|
||||
</figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<!-- wp:image {"id":1440,"sizeSlug":"large","linkDestination":"none","inheritedAttributes":{"linkDestination":true,"linkTarget":true,"sizeSlug":true}} -->
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="http://google.com/hi.png" alt="Image gallery image" />
|
||||
<img
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1440"
|
||||
/>
|
||||
</figure>
|
||||
<!-- /wp:image -->
|
||||
</figure>
|
||||
|
||||
@ -6,23 +6,23 @@
|
||||
"images": [],
|
||||
"ids": [],
|
||||
"shortCodeTransforms": [],
|
||||
"columns": 1,
|
||||
"caption": "",
|
||||
"imageCrop": true,
|
||||
"fixedHeight": true,
|
||||
"linkTo": "none",
|
||||
"sizeSlug": "large",
|
||||
"allowResize": false,
|
||||
"className": "columns-1",
|
||||
"columns": 1
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "https://cldup.com/uuUqE_dXzy.jpg",
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190",
|
||||
"alt": "Image gallery image",
|
||||
"caption": "",
|
||||
"id": 1421,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
@ -32,9 +32,10 @@
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://google.com/hi.png",
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580",
|
||||
"alt": "Image gallery image",
|
||||
"caption": "",
|
||||
"id": 1440,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
|
||||
@ -2,51 +2,61 @@
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"linkTo": "none",
|
||||
"className": "columns-1"
|
||||
"columns": 1,
|
||||
"linkTo": "none"
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 1421,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
"linkDestination": "none",
|
||||
"inheritedAttributes": {
|
||||
"linkDestination": true,
|
||||
"linkTarget": true,
|
||||
"sizeSlug": true
|
||||
}
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"https://cldup.com/uuUqE_dXzy.jpg\" alt=\"Image gallery image\" />\n\t</figure>\n\t",
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1421\"\n\t\t/>\n\t</figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"https://cldup.com/uuUqE_dXzy.jpg\" alt=\"Image gallery image\" />\n\t</figure>\n\t"
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1421\"\n\t\t/>\n\t</figure>\n\t"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 1440,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "none"
|
||||
"linkDestination": "none",
|
||||
"inheritedAttributes": {
|
||||
"linkDestination": true,
|
||||
"linkTarget": true,
|
||||
"sizeSlug": true
|
||||
}
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"http://google.com/hi.png\" alt=\"Image gallery image\" />\n\t</figure>\n\t",
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1440\"\n\t\t/>\n\t</figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img src=\"http://google.com/hi.png\" alt=\"Image gallery image\" />\n\t</figure>\n\t"
|
||||
"\n\t<figure class=\"wp-block-image size-large\">\n\t\t<img\n\t\t\tsrc=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\"\n\t\t\talt=\"Image gallery image\"\n\t\t\tclass=\"wp-image-1440\"\n\t\t/>\n\t</figure>\n\t"
|
||||
]
|
||||
}
|
||||
],
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery has-nested-images is-cropped columns-1\" >\n\t\n\n\t\n</figure>\n",
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery has-nested-images columns-1 is-cropped\">\n\t\n\n\t\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure class=\"wp-block-gallery has-nested-images is-cropped columns-1\" >\n\t",
|
||||
"\n<figure class=\"wp-block-gallery has-nested-images columns-1 is-cropped\">\n\t",
|
||||
null,
|
||||
"\n\n\t",
|
||||
null,
|
||||
"\n</figure>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [
|
||||
"\n"
|
||||
]
|
||||
}
|
||||
]
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
]
|
||||
|
||||
@ -1,3 +1,9 @@
|
||||
<!-- wp:gallery {"linkTo":"none","className":"columns-1"} -->
|
||||
<figure class="wp-block-gallery has-nested-images is-cropped columns-1"><!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --><figure class="wp-block-image size-large"><img src="https://cldup.com/uuUqE_dXzy.jpg" alt="Image gallery image" /></figure><!-- /wp:image --><!-- wp:image {"sizeSlug":"large","linkDestination":"none"} --><figure class="wp-block-image size-large"><img src="http://google.com/hi.png" alt="Image gallery image" /></figure><!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
<!-- wp:gallery {"columns":1,"linkTo":"none"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-1 is-cropped"><!-- wp:image {"id":1421,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large"><img src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190" alt="Image gallery image" class="wp-image-1421"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":1440,"sizeSlug":"large","linkDestination":"none"} -->
|
||||
<figure class="wp-block-image size-large"><img src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580" alt="Image gallery image" class="wp-image-1440"/></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
|
||||
@ -1,15 +1,17 @@
|
||||
|
||||
<figure class="wp-block-gallery has-nested-images is-cropped columns-1 wp-block-gallery-1 is-layout-flex" >
|
||||
|
||||
<figure class="wp-block-gallery has-nested-images columns-1 is-cropped wp-block-gallery-1 is-layout-flex">
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="https://cldup.com/uuUqE_dXzy.jpg" alt="Image gallery image" />
|
||||
<img data-id="1421"
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1421"
|
||||
/>
|
||||
</figure>
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-image size-large">
|
||||
<img src="http://google.com/hi.png" alt="Image gallery image" />
|
||||
<img data-id="1440"
|
||||
src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580"
|
||||
alt="Image gallery image"
|
||||
class="wp-image-1440"
|
||||
/>
|
||||
</figure>
|
||||
|
||||
</figure>
|
||||
|
||||
|
||||
@ -0,0 +1,10 @@
|
||||
<!-- wp:core/gallery {"columns":2,"align":"wide"} -->
|
||||
<div class="wp-block-gallery columns-2 is-cropped alignwide">
|
||||
<figure class="blocks-gallery-image">
|
||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" alt="title" />
|
||||
</figure>
|
||||
<figure class="blocks-gallery-image">
|
||||
<img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" alt="title" />
|
||||
</figure>
|
||||
</div>
|
||||
<!-- /wp:core/gallery -->
|
||||
@ -0,0 +1,35 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"columns": 2,
|
||||
"imageCrop": true,
|
||||
"linkTo": "none",
|
||||
"align": "wide",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==",
|
||||
"alt": "title",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=",
|
||||
"alt": "title",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,21 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"columns": 2,
|
||||
"align": "wide"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n<div class=\"wp-block-gallery columns-2 is-cropped alignwide\">\n\t<figure class=\"blocks-gallery-image\">\n\t\t<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==\" alt=\"title\" />\n\t</figure>\n\t<figure class=\"blocks-gallery-image\">\n\t\t<img src=\"data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=\" alt=\"title\" />\n\t</figure>\n</div>\n",
|
||||
"innerContent": [
|
||||
"\n<div class=\"wp-block-gallery columns-2 is-cropped alignwide\">\n\t<figure class=\"blocks-gallery-image\">\n\t\t<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==\" alt=\"title\" />\n\t</figure>\n\t<figure class=\"blocks-gallery-image\">\n\t\t<img src=\"data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=\" alt=\"title\" />\n\t</figure>\n</div>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,9 @@
|
||||
<!-- wp:gallery {"columns":2,"linkTo":"none","align":"wide"} -->
|
||||
<figure class="wp-block-gallery alignwide has-nested-images columns-2 is-cropped"><!-- wp:image {"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" alt="title"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" alt="title"/></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,9 @@
|
||||
|
||||
<div class="wp-block-gallery columns-2 is-cropped alignwide wp-block-gallery-1 is-layout-flex">
|
||||
<figure class="blocks-gallery-image">
|
||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" alt="title" />
|
||||
</figure>
|
||||
<figure class="blocks-gallery-image">
|
||||
<img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" alt="title" />
|
||||
</figure>
|
||||
</div>
|
||||
@ -0,0 +1,14 @@
|
||||
<!-- wp:core/gallery {"columns":2,"align":"wide"} -->
|
||||
<ul class="wp-block-gallery columns-2 is-cropped alignwide">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" data-id="1" alt="title" class="wp-image-1" />
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" data-id="2" alt="title" class="wp-image-2" />
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- /wp:core/gallery -->
|
||||
@ -0,0 +1,39 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"columns": 2,
|
||||
"imageCrop": true,
|
||||
"linkTo": "none",
|
||||
"align": "wide",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==",
|
||||
"alt": "title",
|
||||
"caption": "",
|
||||
"id": 1,
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=",
|
||||
"alt": "title",
|
||||
"caption": "",
|
||||
"id": 2,
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,21 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"columns": 2,
|
||||
"align": "wide"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n<ul class=\"wp-block-gallery columns-2 is-cropped alignwide\">\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==\" data-id=\"1\" alt=\"title\" class=\"wp-image-1\" />\n\t\t</figure>\n\t</li>\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=\" data-id=\"2\" alt=\"title\" class=\"wp-image-2\" />\n\t\t</figure>\n\t</li>\n</ul>\n",
|
||||
"innerContent": [
|
||||
"\n<ul class=\"wp-block-gallery columns-2 is-cropped alignwide\">\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==\" data-id=\"1\" alt=\"title\" class=\"wp-image-1\" />\n\t\t</figure>\n\t</li>\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=\" data-id=\"2\" alt=\"title\" class=\"wp-image-2\" />\n\t\t</figure>\n\t</li>\n</ul>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,9 @@
|
||||
<!-- wp:gallery {"columns":2,"linkTo":"none","align":"wide"} -->
|
||||
<figure class="wp-block-gallery alignwide has-nested-images columns-2 is-cropped"><!-- wp:image {"id":1,"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" alt="title" class="wp-image-1"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":2,"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" alt="title" class="wp-image-2"/></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,13 @@
|
||||
|
||||
<ul class="wp-block-gallery columns-2 is-cropped alignwide wp-block-gallery-1 is-layout-flex">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" data-id="1" alt="title" class="wp-image-1" />
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" data-id="2" alt="title" class="wp-image-2" />
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
@ -0,0 +1,14 @@
|
||||
<!-- wp:core/gallery {"ids":[null,null],"align":"wide"} -->
|
||||
<ul class="wp-block-gallery columns-2 is-cropped alignwide">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" alt="title" />
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" alt="title" />
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- /wp:core/gallery -->
|
||||
@ -0,0 +1,36 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"imageCrop": true,
|
||||
"linkTo": "none",
|
||||
"align": "wide",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==",
|
||||
"alt": "title",
|
||||
"caption": "",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=",
|
||||
"alt": "title",
|
||||
"caption": "",
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,21 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"ids": [ null, null ],
|
||||
"align": "wide"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n<ul class=\"wp-block-gallery columns-2 is-cropped alignwide\">\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==\" alt=\"title\" />\n\t\t</figure>\n\t</li>\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=\" alt=\"title\" />\n\t\t</figure>\n\t</li>\n</ul>\n",
|
||||
"innerContent": [
|
||||
"\n<ul class=\"wp-block-gallery columns-2 is-cropped alignwide\">\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==\" alt=\"title\" />\n\t\t</figure>\n\t</li>\n\t<li class=\"blocks-gallery-item\">\n\t\t<figure>\n\t\t\t<img src=\"data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=\" alt=\"title\" />\n\t\t</figure>\n\t</li>\n</ul>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,9 @@
|
||||
<!-- wp:gallery {"linkTo":"none","align":"wide"} -->
|
||||
<figure class="wp-block-gallery alignwide has-nested-images columns-default is-cropped"><!-- wp:image {"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" alt="title"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" alt="title"/></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,13 @@
|
||||
|
||||
<ul class="wp-block-gallery columns-2 is-cropped alignwide wp-block-gallery-1 is-layout-flex">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==" alt="title" />
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="data:image/jpeg;base64,/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k=" alt="title" />
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
@ -0,0 +1,21 @@
|
||||
<!-- wp:gallery {"ids":["1421","1440","1362"],"align":"wide"} -->
|
||||
<figure class="wp-block-gallery columns-3 is-cropped alignwide">
|
||||
<ul class="blocks-gallery-grid">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190" alt="" data-id="1421" class="wp-image-1421"/>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580" alt="" data-id="1440" class="wp-image-1440"/>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="https://sergioestevaofolio.files.wordpress.com/2017/05/cropped-l1005945-2-2.jpg?w=580" alt="" data-id="1362" class="wp-image-1362"/>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
</figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,51 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"caption": "",
|
||||
"imageCrop": true,
|
||||
"linkTo": "none",
|
||||
"align": "wide",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"id": 1421,
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"id": 1440,
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "https://sergioestevaofolio.files.wordpress.com/2017/05/cropped-l1005945-2-2.jpg?w=580",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"id": 1362,
|
||||
"linkDestination": "none"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,21 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"ids": [ "1421", "1440", "1362" ],
|
||||
"align": "wide"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery columns-3 is-cropped alignwide\">\n\t<ul class=\"blocks-gallery-grid\">\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<img src=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\" alt=\"\" data-id=\"1421\" class=\"wp-image-1421\"/>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<img src=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\" alt=\"\" data-id=\"1440\" class=\"wp-image-1440\"/>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<img src=\"https://sergioestevaofolio.files.wordpress.com/2017/05/cropped-l1005945-2-2.jpg?w=580\" alt=\"\" data-id=\"1362\" class=\"wp-image-1362\"/>\n\t\t\t</figure>\n\t\t</li>\n\t</ul>\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure class=\"wp-block-gallery columns-3 is-cropped alignwide\">\n\t<ul class=\"blocks-gallery-grid\">\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<img src=\"https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190\" alt=\"\" data-id=\"1421\" class=\"wp-image-1421\"/>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<img src=\"https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580\" alt=\"\" data-id=\"1440\" class=\"wp-image-1440\"/>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<img src=\"https://sergioestevaofolio.files.wordpress.com/2017/05/cropped-l1005945-2-2.jpg?w=580\" alt=\"\" data-id=\"1362\" class=\"wp-image-1362\"/>\n\t\t\t</figure>\n\t\t</li>\n\t</ul>\n</figure>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,13 @@
|
||||
<!-- wp:gallery {"linkTo":"none","align":"wide"} -->
|
||||
<figure class="wp-block-gallery alignwide has-nested-images columns-default is-cropped"><!-- wp:image {"id":1421,"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190" alt="" class="wp-image-1421"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":1440,"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580" alt="" class="wp-image-1440"/></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":1362,"linkDestination":"none"} -->
|
||||
<figure class="wp-block-image"><img src="https://sergioestevaofolio.files.wordpress.com/2017/05/cropped-l1005945-2-2.jpg?w=580" alt="" class="wp-image-1362"/></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,20 @@
|
||||
|
||||
<figure class="wp-block-gallery columns-3 is-cropped alignwide wp-block-gallery-1 is-layout-flex">
|
||||
<ul class="blocks-gallery-grid">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="https://sergioestevaofolio.files.wordpress.com/2016/09/cropped-img_9054-1.jpg?w=190" alt="" data-id="1421" class="wp-image-1421"/>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="https://sergioestevaofolio.files.wordpress.com/2017/09/cropped-l1001498-1.jpg?w=580" alt="" data-id="1440" class="wp-image-1440"/>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<img src="https://sergioestevaofolio.files.wordpress.com/2017/05/cropped-l1005945-2-2.jpg?w=580" alt="" data-id="1362" class="wp-image-1362"/>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
</figure>
|
||||
@ -0,0 +1,48 @@
|
||||
<!-- wp:gallery {"ids":[705,704,703],"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery columns-3 is-cropped">
|
||||
<ul class="blocks-gallery-grid">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg" >
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"
|
||||
alt=""
|
||||
data-id="705"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg"
|
||||
data-link="http://wptest.local/classic/test-image-3/"
|
||||
class="wp-image-705"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg" >
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"
|
||||
alt=""
|
||||
data-id="704"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image-2/"
|
||||
class="wp-image-704"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a href="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg" >
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"
|
||||
alt=""
|
||||
data-id="703"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image/"
|
||||
class="wp-image-703"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
</figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,57 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"caption": "",
|
||||
"imageCrop": true,
|
||||
"linkTo": "media",
|
||||
"sizeSlug": "large",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"id": 705,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"id": 704,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"id": 703,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,21 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"ids": [ 705, 704, 703 ],
|
||||
"linkTo": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery columns-3 is-cropped\">\n\t<ul class=\"blocks-gallery-grid\">\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"705\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/classic/test-image-3/\"\n\t\t\t\t\t\tclass=\"wp-image-705\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"704\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image-2/\"\n\t\t\t\t\t\tclass=\"wp-image-704\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a href=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"703\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image/\"\n\t\t\t\t\t\tclass=\"wp-image-703\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t</ul>\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure class=\"wp-block-gallery columns-3 is-cropped\">\n\t<ul class=\"blocks-gallery-grid\">\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"705\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/classic/test-image-3/\"\n\t\t\t\t\t\tclass=\"wp-image-705\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"704\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image-2/\"\n\t\t\t\t\t\tclass=\"wp-image-704\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a href=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\" >\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"703\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image/\"\n\t\t\t\t\t\tclass=\"wp-image-703\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t</ul>\n</figure>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,13 @@
|
||||
<!-- wp:gallery {"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped"><!-- wp:image {"id":705,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":704,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":703,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,48 @@
|
||||
|
||||
<figure class="wp-block-gallery columns-3 is-cropped wp-block-gallery-1 is-layout-flex">
|
||||
<ul class="blocks-gallery-grid">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg" >
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"
|
||||
alt=""
|
||||
data-id="705"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg"
|
||||
data-link="http://wptest.local/classic/test-image-3/"
|
||||
class="wp-image-705"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg" >
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"
|
||||
alt=""
|
||||
data-id="704"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image-2/"
|
||||
class="wp-image-704"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a href="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg" >
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"
|
||||
alt=""
|
||||
data-id="703"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image/"
|
||||
class="wp-image-703"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
</figure>
|
||||
|
||||
@ -0,0 +1,54 @@
|
||||
<!-- wp:gallery {"ids":[705,704,703],"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery columns-3 is-cropped">
|
||||
<ul class="blocks-gallery-grid">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a
|
||||
href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg"
|
||||
>
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"
|
||||
alt=""
|
||||
data-id="705"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg"
|
||||
data-link="http://wptest.local/classic/test-image-3/"
|
||||
class="wp-image-705"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a
|
||||
href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg"
|
||||
>
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"
|
||||
alt=""
|
||||
data-id="704"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image-2/"
|
||||
class="wp-image-704"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a
|
||||
href="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg"
|
||||
>
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"
|
||||
alt=""
|
||||
data-id="703"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image/"
|
||||
class="wp-image-703"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
</figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,57 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"caption": "",
|
||||
"imageCrop": true,
|
||||
"linkTo": "media",
|
||||
"sizeSlug": "large",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"id": 705,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"id": 704,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"id": 703,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,21 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"ids": [ 705, 704, 703 ],
|
||||
"linkTo": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery columns-3 is-cropped\">\n\t<ul class=\"blocks-gallery-grid\">\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a\n\t\t\t\t\thref=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\"\n\t\t\t\t>\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"705\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/classic/test-image-3/\"\n\t\t\t\t\t\tclass=\"wp-image-705\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a\n\t\t\t\t\thref=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\"\n\t\t\t\t>\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"704\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image-2/\"\n\t\t\t\t\t\tclass=\"wp-image-704\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a\n\t\t\t\t\thref=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\"\n\t\t\t\t>\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"703\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image/\"\n\t\t\t\t\t\tclass=\"wp-image-703\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t</ul>\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure class=\"wp-block-gallery columns-3 is-cropped\">\n\t<ul class=\"blocks-gallery-grid\">\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a\n\t\t\t\t\thref=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\"\n\t\t\t\t>\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"705\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/classic/test-image-3/\"\n\t\t\t\t\t\tclass=\"wp-image-705\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a\n\t\t\t\t\thref=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\"\n\t\t\t\t>\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"704\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image-2/\"\n\t\t\t\t\t\tclass=\"wp-image-704\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t\t<li class=\"blocks-gallery-item\">\n\t\t\t<figure>\n\t\t\t\t<a\n\t\t\t\t\thref=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\"\n\t\t\t\t>\n\t\t\t\t\t<img\n\t\t\t\t\t\tsrc=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"\n\t\t\t\t\t\talt=\"\"\n\t\t\t\t\t\tdata-id=\"703\"\n\t\t\t\t\t\tdata-full-url=\"http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg\"\n\t\t\t\t\t\tdata-link=\"http://wptest.local/test-image/\"\n\t\t\t\t\t\tclass=\"wp-image-703\"\n\t\t\t\t\t/>\n\t\t\t\t</a>\n\t\t\t</figure>\n\t\t</li>\n\t</ul>\n</figure>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,13 @@
|
||||
<!-- wp:gallery {"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped"><!-- wp:image {"id":705,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":704,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":703,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,54 @@
|
||||
|
||||
<figure class="wp-block-gallery columns-3 is-cropped wp-block-gallery-1 is-layout-flex">
|
||||
<ul class="blocks-gallery-grid">
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a
|
||||
href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg"
|
||||
>
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"
|
||||
alt=""
|
||||
data-id="705"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-scaled.jpg"
|
||||
data-link="http://wptest.local/classic/test-image-3/"
|
||||
class="wp-image-705"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a
|
||||
href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg"
|
||||
>
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"
|
||||
alt=""
|
||||
data-id="704"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image-2/"
|
||||
class="wp-image-704"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
<li class="blocks-gallery-item">
|
||||
<figure>
|
||||
<a
|
||||
href="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg"
|
||||
>
|
||||
<img
|
||||
src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"
|
||||
alt=""
|
||||
data-id="703"
|
||||
data-full-url="http://wptest.local/wp-content/uploads/2020/04/test-image-scaled.jpg"
|
||||
data-link="http://wptest.local/test-image/"
|
||||
class="wp-image-703"
|
||||
/>
|
||||
</a>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
</figure>
|
||||
|
||||
@ -0,0 +1,31 @@
|
||||
<!-- wp:gallery {"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped">
|
||||
<!-- wp:image {"id":705,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":704,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":703,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
</figure>
|
||||
<!-- /wp:gallery -->
|
||||
<!-- wp:gallery {"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped">
|
||||
<!-- wp:image {"id":705,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":704,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":703,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
<figcaption class="blocks-gallery-caption">This gallery has a caption</figcaption>
|
||||
</figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,120 @@
|
||||
[
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"images": [],
|
||||
"ids": [],
|
||||
"shortCodeTransforms": [],
|
||||
"caption": "",
|
||||
"imageCrop": true,
|
||||
"fixedHeight": true,
|
||||
"linkTo": "media",
|
||||
"sizeSlug": "large",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"id": 705,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"id": 704,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"id": 703,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "core/gallery",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"images": [],
|
||||
"ids": [],
|
||||
"shortCodeTransforms": [],
|
||||
"caption": "This gallery has a caption",
|
||||
"imageCrop": true,
|
||||
"fixedHeight": true,
|
||||
"linkTo": "media",
|
||||
"sizeSlug": "large",
|
||||
"allowResize": false
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg",
|
||||
"id": 705,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg",
|
||||
"id": 704,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
},
|
||||
{
|
||||
"name": "core/image",
|
||||
"isValid": true,
|
||||
"attributes": {
|
||||
"url": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"alt": "",
|
||||
"caption": "",
|
||||
"href": "http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg",
|
||||
"id": 703,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,123 @@
|
||||
[
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"linkTo": "media"
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 705,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\" alt=\"\" class=\"wp-image-705\"/></a></figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\" alt=\"\" class=\"wp-image-705\"/></a></figure>\n\t"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 704,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\" alt=\"\" class=\"wp-image-704\"/></a></figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\" alt=\"\" class=\"wp-image-704\"/></a></figure>\n\t"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 703,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\" alt=\"\" class=\"wp-image-703\"/></a></figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\" alt=\"\" class=\"wp-image-703\"/></a></figure>\n\t"
|
||||
]
|
||||
}
|
||||
],
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\">\n\t\n\t\n\t\n\t\n\t\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\">\n\t",
|
||||
null,
|
||||
"\n\t\n\t",
|
||||
null,
|
||||
"\n\t\n\t",
|
||||
null,
|
||||
"\n</figure>\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": null,
|
||||
"attrs": {},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n",
|
||||
"innerContent": [ "\n" ]
|
||||
},
|
||||
{
|
||||
"blockName": "core/gallery",
|
||||
"attrs": {
|
||||
"linkTo": "media"
|
||||
},
|
||||
"innerBlocks": [
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 705,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\" alt=\"\" class=\"wp-image-705\"/></a></figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg\" alt=\"\" class=\"wp-image-705\"/></a></figure>\n\t"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 704,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\" alt=\"\" class=\"wp-image-704\"/></a></figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg\" alt=\"\" class=\"wp-image-704\"/></a></figure>\n\t"
|
||||
]
|
||||
},
|
||||
{
|
||||
"blockName": "core/image",
|
||||
"attrs": {
|
||||
"id": 703,
|
||||
"sizeSlug": "large",
|
||||
"linkDestination": "media"
|
||||
},
|
||||
"innerBlocks": [],
|
||||
"innerHTML": "\n\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\" alt=\"\" class=\"wp-image-703\"/></a></figure>\n\t",
|
||||
"innerContent": [
|
||||
"\n\t<figure class=\"wp-block-image size-large\"><a href=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\"><img src=\"http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg\" alt=\"\" class=\"wp-image-703\"/></a></figure>\n\t"
|
||||
]
|
||||
}
|
||||
],
|
||||
"innerHTML": "\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\">\n\t\n\t\n\t\n\t\n\t\n\t<figcaption class=\"blocks-gallery-caption\">This gallery has a caption</figcaption>\n</figure>\n",
|
||||
"innerContent": [
|
||||
"\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\">\n\t",
|
||||
null,
|
||||
"\n\t\n\t",
|
||||
null,
|
||||
"\n\t\n\t",
|
||||
null,
|
||||
"\n\t<figcaption class=\"blocks-gallery-caption\">This gallery has a caption</figcaption>\n</figure>\n"
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,27 @@
|
||||
<!-- wp:gallery {"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped"><!-- wp:image {"id":705,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":704,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":703,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
<!-- /wp:image --></figure>
|
||||
<!-- /wp:gallery -->
|
||||
|
||||
<!-- wp:gallery {"ids":[],"shortCodeTransforms":[],"linkTo":"media"} -->
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped"><!-- wp:image {"id":705,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":704,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<!-- /wp:image -->
|
||||
|
||||
<!-- wp:image {"id":703,"sizeSlug":"large","linkDestination":"media"} -->
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
<!-- /wp:image --><figcaption class="blocks-gallery-caption wp-element-caption">This gallery has a caption</figcaption></figure>
|
||||
<!-- /wp:gallery -->
|
||||
@ -0,0 +1,15 @@
|
||||
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex">
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img data-id="705" src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img data-id="704" src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img data-id="703" src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
</figure>
|
||||
|
||||
|
||||
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex">
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg"><img data-id="705" src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1-682x1024.jpg" alt="" class="wp-image-705"/></a></figure>
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg"><img data-id="704" src="http://wptest.local/wp-content/uploads/2020/09/test-image-edited-1024x682.jpg" alt="" class="wp-image-704"/></a></figure>
|
||||
<figure class="wp-block-image size-large"><a href="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg"><img data-id="703" src="http://wptest.local/wp-content/uploads/2020/04/test-image-1024x683.jpg" alt="" class="wp-image-703"/></a></figure>
|
||||
<figcaption class="blocks-gallery-caption">This gallery has a caption</figcaption>
|
||||
</figure>
|
||||
|
||||
@ -227,6 +227,10 @@ class Tests_Blocks_Render extends WP_UnitTestCase {
|
||||
$normalized_html = preg_replace( '/wp-block-gallery-\d+/', 'wp-block-gallery-1', $normalized_html );
|
||||
$expected_html = self::strip_r( file_get_contents( $server_html_path ) );
|
||||
|
||||
// Convert HTML to be white space insensitive.
|
||||
$normalized_html = preg_replace( '/(\s+$)/m', '', $normalized_html );
|
||||
$expected_html = preg_replace( '/(\s+$)/m', '', $expected_html );
|
||||
|
||||
$this->assertSame(
|
||||
$expected_html,
|
||||
$normalized_html,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user