Skip to content

Commit 9808cb9

Browse files
committed
Update markdown.mdx based on issue #242
1 parent 093548f commit 9808cb9

File tree

1 file changed

+3
-3
lines changed
  • fern/products/docs/pages/component-library/writing-content

1 file changed

+3
-3
lines changed

fern/products/docs/pages/component-library/writing-content/markdown.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You can use locally stored images or URLs to include images in your Markdown pag
7777
</Tab>
7878
<Tab title="HTML">
7979
```html
80-
<img src="../assets/images/overview.png" width="500px" height="auto" />
80+
<img src="../assets/images/overview.png" width="500px" height="auto" noZoom />
8181
```
8282
</Tab>
8383
</Tabs>
@@ -90,6 +90,7 @@ Common image attributes:
9090
| `alt` | Alternative text for accessibility |
9191
| `title` | Tooltip text shown on hover |
9292
| `width` and `height` | Dimensions of the image in pixels |
93+
| `noZoom` | Disables image zoom functionality |
9394

9495
<Note>
9596
For more details about the HTML image element and its attributes, see the [MDN documentation on the img element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img).
@@ -109,7 +110,6 @@ For example, to embed a video, use the following Markdown:
109110

110111
### Local videos
111112

112-
113113
You can embed videos in your documentation using the HTML `<video>` tag. This gives you control over video playback settings like autoplay, looping, and muting.
114114

115115
```html
@@ -229,4 +229,4 @@ erDiagram
229229
CUSTOMER ||--o{ PLANT-ORDER : places
230230
PLANT-ORDER ||--|{ PLANT-ID : contains
231231
CUSTOMER }|..|{ DELIVERY-ADDRESS : uses
232-
```
232+
```

0 commit comments

Comments
 (0)