diff --git a/accessibility-checker-engine/help/HAAC_Accesskey_NeedLabel.mdx b/accessibility-checker-engine/help/HAAC_Accesskey_NeedLabel.mdx
index 22cc724c2..feb695ba3 100644
--- a/accessibility-checker-engine/help/HAAC_Accesskey_NeedLabel.mdx
+++ b/accessibility-checker-engine/help/HAAC_Accesskey_NeedLabel.mdx
@@ -2,7 +2,7 @@
title: "Accessibility Checker Rule Help: HAAC_Accesskey_NeedLabel"
---
import "../../../styles/ToolHelp.scss"
-import { Tag } from "carbon-components-react";
+import { CodeSnippet, Tag } from "carbon-components-react";
diff --git a/accessibility-checker-engine/help/HAAC_ActiveDescendantCheck.mdx b/accessibility-checker-engine/help/HAAC_ActiveDescendantCheck.mdx
index 2532a04d9..7abab20e7 100644
--- a/accessibility-checker-engine/help/HAAC_ActiveDescendantCheck.mdx
+++ b/accessibility-checker-engine/help/HAAC_ActiveDescendantCheck.mdx
@@ -2,7 +2,7 @@
title: "Accessibility Checker Rule Help: HAAC_ActiveDescendantCheck"
---
import "../../../styles/ToolHelp.scss"
-import { Tag } from "carbon-components-react";
+import { CodeSnippet, Tag } from "carbon-components-react";
@@ -38,14 +38,14 @@ The `aria-activedescendant` property must reference the `id` of a non-empty, non
The following example* shows a radio group using `aria-activedescendant` to indicate the active radio button, which is coded as a DOM descendant:
- ```
-
@@ -38,9 +38,7 @@ Element with an `"img"` role must have a non-empty label
Example:
-```
-
...
Text that describes the group of images.
-```
+<div role="img" aria-labelledby="image1"> ... <p id="image1">Text that describes the group of images.</p></div>
diff --git a/accessibility-checker-engine/help/HAAC_Aria_Native_Host_Sematics.mdx b/accessibility-checker-engine/help/HAAC_Aria_Native_Host_Sematics.mdx
index affeea022..6f3cf63be 100644
--- a/accessibility-checker-engine/help/HAAC_Aria_Native_Host_Sematics.mdx
+++ b/accessibility-checker-engine/help/HAAC_Aria_Native_Host_Sematics.mdx
@@ -2,7 +2,7 @@
title: "Accessibility Checker Rule Help: HAAC_Aria_Native_Host_Sematics"
---
import "../../../styles/ToolHelp.scss"
-import { Tag } from "carbon-components-react";
+import { CodeSnippet, Tag } from "carbon-components-react";
@@ -36,15 +36,11 @@ WAI-ARIA roles and attributes must be valid for the element they are assigned to
The following sample code correctly uses the HTML5 `
diff --git a/accessibility-checker-engine/help/HAAC_Aria_Or_HTML5_Attr.mdx b/accessibility-checker-engine/help/HAAC_Aria_Or_HTML5_Attr.mdx
index c403fab7e..904a5f184 100644
--- a/accessibility-checker-engine/help/HAAC_Aria_Or_HTML5_Attr.mdx
+++ b/accessibility-checker-engine/help/HAAC_Aria_Or_HTML5_Attr.mdx
@@ -2,7 +2,7 @@
title: "Accessibility Checker Rule Help: HAAC_Aria_Or_HTML5_Attr"
---
import "../../../styles/ToolHelp.scss"
-import { Tag } from "carbon-components-react";
+import { CodeSnippet, Tag } from "carbon-components-react";
@@ -34,15 +34,13 @@ Remove one of the conflicting HTML5 or ARIA attributes from the `` elemen
Example using HTML5:
-```