diff --git a/lib/modules/manager/gleam/readme.md b/lib/modules/manager/gleam/readme.md
index 183a8db811913e1e4ac4d6d1b272463aacc20a88..f2b86354cc92b85b3f64c8e50fc78c1bb52db173 100644
--- a/lib/modules/manager/gleam/readme.md
+++ b/lib/modules/manager/gleam/readme.md
@@ -15,12 +15,13 @@ The `gleam` manager, however, uses `gleam` itself to keep `manifest.toml` up-to-
 
 Renovate's `"auto"` strategy defaults to `"widen"` and works like this for `gleam`:
 
+<!-- prettier-ignore -->
 1. If an existing range is a complex range (contains multiple range specifications), Renovate widens it to include the new version.
-   - Example: `>= 0.14.0 and < 0.15.0` becomes `>= 0.14.0 and < 0.16.1` for a new `0.16.0` version.
+    - Example: `>= 0.14.0 and < 0.15.0` becomes `>= 0.14.0 and < 0.16.1` for a new `0.16.0` version.
 1. For simple ranges, if the update is outside the existing range, Renovate widens the range to include the new version.
-   - Example: `<= 0.38.0` becomes `<= 0.39.0` for a new `0.39.0` version.
+    - Example: `<= 0.38.0` becomes `<= 0.39.0` for a new `0.39.0` version.
 1. For exact version constraints, Renovate replaces the version with the new one.
-   - Example: `== 0.12.0` becomes `== 0.13.0` for a new `0.13.0` version.
+    - Example: `== 0.12.0` becomes `== 0.13.0` for a new `0.13.0` version.
 
 <!-- prettier-ignore -->
 !!! warning