Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can use locally stored images or URLs to include images in your Markdown pag
</Tab>
<Tab title="HTML">
```html
<img src="../assets/images/overview.png" width="500px" height="auto" />
<img src="../assets/images/overview.png" width="500px" height="auto" noZoom />
```
</Tab>
</Tabs>
Expand All @@ -90,6 +90,7 @@ Common image attributes:
| `alt` | Alternative text for accessibility |
| `title` | Tooltip text shown on hover |
| `width` and `height` | Dimensions of the image in pixels |
| `noZoom` | Disables image zoom functionality |

<Note>
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).
Expand All @@ -109,7 +110,6 @@ For example, to embed a video, use the following Markdown:

### Local videos


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.

```html
Expand Down Expand Up @@ -229,4 +229,4 @@ erDiagram
CUSTOMER ||--o{ PLANT-ORDER : places
PLANT-ORDER ||--|{ PLANT-ID : contains
CUSTOMER }|..|{ DELIVERY-ADDRESS : uses
```
```