docs(v2): Removing wrong parenthesis on image variable (#4226)

* Removing wrong parenthesis on image variable

* Updating markdown feature documenation
This commit is contained in:
Juan Carlos Blanco Delgado 2021-02-16 08:28:54 +00:00 committed by GitHub
parent 32d8148fd3
commit 2ff5d347ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ The ES imports syntax also works:
import myImageUrl from './assets/docusaurus-asset-example-banner.png';
<img src={myImageUrl)} alt="My image alternative text" />
<img src={myImageUrl} alt="My image alternative text" />
```
This results in displaying the image:

View file

@ -1072,7 +1072,7 @@ The ES imports syntax also works:
import myImageUrl from './assets/docusaurus-asset-example-banner.png';
<img src={myImageUrl)} alt="My image alternative text" />
<img src={myImageUrl} alt="My image alternative text" />
```
This results in displaying the image: