From 218d9aab3b6582c4280c8ada074b2a213a32b2cb Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 30 Jul 2025 15:15:29 -0600 Subject: [PATCH 1/2] Update markdown.mdx based on issue #242 --- .../pages/component-library/writing-content/markdown.mdx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/fern/products/docs/pages/component-library/writing-content/markdown.mdx b/fern/products/docs/pages/component-library/writing-content/markdown.mdx index c6214c871..2fde414ff 100644 --- a/fern/products/docs/pages/component-library/writing-content/markdown.mdx +++ b/fern/products/docs/pages/component-library/writing-content/markdown.mdx @@ -82,6 +82,12 @@ You can use locally stored images or URLs to include images in your Markdown pag +To disable image zoom functionality, add the `noZoom` attribute to the image: + +```html +Logo +``` + Common image attributes: | Attribute | Description | @@ -90,6 +96,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 | 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). @@ -229,4 +236,4 @@ erDiagram CUSTOMER ||--o{ PLANT-ORDER : places PLANT-ORDER ||--|{ PLANT-ID : contains CUSTOMER }|..|{ DELIVERY-ADDRESS : uses -``` +``` \ No newline at end of file From 935b6d56fff6c7f70c45a8da4b20043266a5852f Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 30 Jul 2025 15:41:10 -0600 Subject: [PATCH 2/2] Apply suggestion from @fern-support Co-authored-by: Fern Support <126544928+fern-support@users.noreply.github.com> --- .../pages/component-library/writing-content/markdown.mdx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/fern/products/docs/pages/component-library/writing-content/markdown.mdx b/fern/products/docs/pages/component-library/writing-content/markdown.mdx index 2fde414ff..3269b920d 100644 --- a/fern/products/docs/pages/component-library/writing-content/markdown.mdx +++ b/fern/products/docs/pages/component-library/writing-content/markdown.mdx @@ -82,12 +82,6 @@ You can use locally stored images or URLs to include images in your Markdown pag -To disable image zoom functionality, add the `noZoom` attribute to the image: - -```html -Logo -``` - Common image attributes: | Attribute | Description |