Index: python-gsd/doc/fl-examples.rst
===================================================================
--- python-gsd.orig/doc/fl-examples.rst	2025-08-11 10:19:04.843429229 +0200
+++ python-gsd/doc/fl-examples.rst	2025-08-11 10:19:04.839429181 +0200
@@ -116,6 +116,7 @@
 ^^^^^^^^^^^^^^^^^^^^
 
 .. ipython:: python
+  :okexcept:
 
     f = gsd.fl.open(name="file.gsd", mode='r')
     f.find_matching_chunk_names('')
@@ -163,6 +164,7 @@
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 .. ipython:: python
+  :okexcept:
 
     f = gsd.fl.open(name="file.gsd",
                     mode='w',
@@ -181,6 +183,7 @@
 ^^^^^^^^^^^^^^^^^^^^^^^^
 
 .. ipython:: python
+  :okexcept:
 
     with gsd.fl.open(name="file.gsd", mode='r') as f:
         data = f.read_chunk(frame=0, name='double');
Index: python-gsd/gsd/fl.pyx
===================================================================
--- python-gsd.orig/gsd/fl.pyx	2025-08-11 10:19:04.843429229 +0200
+++ python-gsd/gsd/fl.pyx	2025-08-11 10:19:04.839429181 +0200
@@ -416,7 +416,6 @@
         remain the same.
 
         Example:
-            .. ipython:: python
 
                 with gsd.fl.open(name='file.gsd', mode='w',
                                  application="My application",
@@ -662,7 +661,7 @@
               ``False`` if it does not.
 
         Example:
-            .. ipython:: python
+            .. highlight:: python
 
                 with gsd.fl.open(name='file.gsd', mode='w',
                                  application="My application",
