diff --git a/docs/rules/no-static-element-interactions.md b/docs/rules/no-static-element-interactions.md
index 60779113d..d195c6bb2 100644
--- a/docs/rules/no-static-element-interactions.md
+++ b/docs/rules/no-static-element-interactions.md
@@ -12,7 +12,7 @@ In order to add interactivity such as a mouse or key event listener to a static
Indicate the element's role with the `role` attribute:
-```
+```jsx
` is used, then it will also respond to Enter key presses when it has focus. The developer is responsible for providing the expected behavior of an element that the role suggests it would have: focusability and key press support.
-### Case: This element is not a button, link, menuitem, etc. It is catching bubbled events from elements that it contains
+### Case: The event handler is only being used to capture bubbled events
-If your element is catching bubbled click or key events from descendant elements, then the proper role for this element is `presentation`.
+If a static element has an event handler for the sole purpose of capturing events from its descendants, you can tell the linter to ignore it by setting `role="presentation"`:
-```
+```jsx
+
```
-Marking an element with the role `presentation` indicates to assistive technology that this element should be ignored; it exists to support the web application and is not meant for humans to interact with directly.
+This `role` has no effect on static elements, but it clarifies your intent.
### References
+
1. [WAI-ARIA `role` attribute](https://www.w3.org/TR/wai-aria-1.1/#usage_intro)
1. [WAI-ARIA Authoring Practices Guide - Design Patterns and Widgets](https://www.w3.org/TR/wai-aria-practices-1.1/#aria_ex)
1. [Fundamental Keyboard Navigation Conventions](https://www.w3.org/TR/wai-aria-practices-1.1/#kbd_generalnav)
@@ -81,6 +83,7 @@ You may configure which handler props should be taken into account when applying
Adjust the list of handler prop names in the handlers array to increase or decrease the coverage surface of this rule in your codebase.
### Succeed
+
```jsx