README.md in editmode-1.3.3 vs README.md in editmode-1.3.4

- old
+ new

@@ -105,9 +105,23 @@ | tags | array |`optional` Filter collection items based on tags listed in this parameter | | class | string | `optional` Class name(s) that will be added along with "chunks-collection-wrapper" to the main collection `<div>` element | | item_class | string | `optional` Class name(s) that will be added along with "chunks-collection-item--wrapper" to all collection items | +### Working with Image Transformation +Use `transformation` attribute to perform real-time image transformations to deliver perfect images to the end-users. + +```ruby +# This chunk should render an image with 200 x 200 dimension += E('id-of-some-image', transformation: "w-200 h-200") + +# For image inside a collection += c('some-collection-id') do + = F('Avatar', transformation: "w-200 h-200") +``` + +Please see complete list of [transformation parameters](https://editmode.com/docs#/imagekit_properties). + ## Caching In order to keep your application speedy, Editmode minimizes the amount of network calls it makes by caching content where it can. #### What's cached - Any embedded content returned by the `e`, `E`, `f`, or `F` view helpers.