8
0
فهرست منبع

Avoid breaking syntax highlighting.

Piotrek Koszuliński 7 سال پیش
والد
کامیت
41b2446409
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      packages/ckeditor5-easy-image/docs/features/easy-image.md

+ 2 - 2
packages/ckeditor5-easy-image/docs/features/easy-image.md

@@ -72,7 +72,7 @@ Responsive images delivered by the Easy Image service are transparent to your ap
 The `srcset` attribute specifies the image variants dedicated for the various screen sizes for the web browser to choose from (360px, 720px, 1080px, 1440px, etc.), for instance the `image.jpg` file  uploaded by the user will have the following markup:
 The `srcset` attribute specifies the image variants dedicated for the various screen sizes for the web browser to choose from (360px, 720px, 1080px, 1440px, etc.), for instance the `image.jpg` file  uploaded by the user will have the following markup:
 
 
 ```html
 ```html
-<figure ...>
+<figure class="image">
 	<img
 	<img
 		src="https://cdn.cke-cs.com/images/image.jpg"
 		src="https://cdn.cke-cs.com/images/image.jpg"
 		srcset="https://cdn.cke-cs.com/images/image.jpg/w_360 360w,
 		srcset="https://cdn.cke-cs.com/images/image.jpg/w_360 360w,
@@ -84,7 +84,7 @@ The `srcset` attribute specifies the image variants dedicated for the various sc
 			https://cdn.cke-cs.com/images/image.jpg/w_3543 3543w"
 			https://cdn.cke-cs.com/images/image.jpg/w_3543 3543w"
 		sizes="100vw"
 		sizes="100vw"
 		width="...">
 		width="...">
-	<figcaption ...>...</figcaption>
+	<figcaption>...</figcaption>
 </figure>
 </figure>
 ```
 ```