Skip to content

Commit d2ae70a

Browse files
committed
Merge branch '6.0' into fix-broken-refs
2 parents 37a2b5d + 6190238 commit d2ae70a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

docs/classic-ui/images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,15 +199,15 @@ Or you can get the HTML tag back, and replace the current tag with it:
199199

200200
```xml
201201
<div tal:define="scale_view context/@@images">
202-
<img tal:replace="structured python: scale_view.tag('image', 'mini')">
202+
<img tal:replace="structure python: scale_view.tag('image', 'mini')">
203203
</div>
204204
```
205205

206206
You can also provide the following keyword arguments to set `title`, `alt`, or `css_class` for the generated tag:
207207

208208
```xml
209209
<div tal:define="scale_view context/@@images">
210-
<img tal:replace="structured python: scale_view.tag('banner', 'mini', title='The Banner', alt='Alternative text', css_class='banner')">
210+
<img tal:replace="structure python: scale_view.tag('banner', 'mini', title='The Banner', alt='Alternative text', css_class='banner')">
211211
</div>
212212
```
213213

docs/install/install-from-packages.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,12 @@ Install the latest Yarn 3 version (not the Classic 1.x one) using `npm`.
179179
```console
180180
3.2.3
181181
```
182+
183+
If you do not see a version of Yarn 3, then try the following to set the active version.
184+
185+
```shell
186+
yarn set version 3.x
187+
```
182188

183189

184190
(install-prerequisites-make-label)=

0 commit comments

Comments
 (0)