mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-06 10:20:09 +02:00
docs(v2): Removing wrong parenthesis on image variable (#4226)
* Removing wrong parenthesis on image variable * Updating markdown feature documenation
This commit is contained in:
parent
32d8148fd3
commit
2ff5d347ba
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ The ES imports syntax also works:
|
||||||
|
|
||||||
import myImageUrl from './assets/docusaurus-asset-example-banner.png';
|
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:
|
This results in displaying the image:
|
||||||
|
|
|
@ -1072,7 +1072,7 @@ The ES imports syntax also works:
|
||||||
|
|
||||||
import myImageUrl from './assets/docusaurus-asset-example-banner.png';
|
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:
|
This results in displaying the image:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue