diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md
index c622279475..e3daada4d5 100644
--- a/ui/CHANGELOG.md
+++ b/ui/CHANGELOG.md
@@ -16,6 +16,14 @@ All notable changes to the **Prowler UI** are documented in this file.
---
+## [1.26.2] (Prowler 5.26.2)
+
+### 🐞 Fixed
+
+- Finding drawer no longer renders literal backticks around inline code in Risk, Description and Remediation sections [(#11142)](https://github.com/prowler-cloud/prowler/pull/11142)
+
+---
+
## [1.26.1] (Prowler 5.26.1)
### 🐞 Fixed
@@ -23,7 +31,6 @@ All notable changes to the **Prowler UI** are documented in this file.
- Role form Cancel buttons now return to Roles [(#11125)](https://github.com/prowler-cloud/prowler/pull/11125)
- Shared select dropdowns stay constrained and scrollable inside modals [(#11125)](https://github.com/prowler-cloud/prowler/pull/11125)
-
---
## [1.26.0] (Prowler v5.26.0)
diff --git a/ui/components/findings/markdown-container.test.tsx b/ui/components/findings/markdown-container.test.tsx
new file mode 100644
index 0000000000..663720f916
--- /dev/null
+++ b/ui/components/findings/markdown-container.test.tsx
@@ -0,0 +1,35 @@
+import { render, screen } from "@testing-library/react";
+import { describe, expect, it } from "vitest";
+
+import { MarkdownContainer } from "./markdown-container";
+
+describe("MarkdownContainer", () => {
+ it("renders bold and inline code as semantic elements", () => {
+ render(
+
+ {"**Bedrock API keys** are evaluated, configured to `never expire`."}
+ ,
+ );
+
+ const code = screen.getByText("never expire");
+ expect(code.tagName).toBe("CODE");
+ expect(screen.getByText("Bedrock API keys").tagName).toBe("STRONG");
+ });
+
+ it("neutralizes the @tailwindcss/typography backtick pseudo-elements on inline code", () => {
+ const { container } = render(
+ {"text `code` text"},
+ );
+
+ const wrapper = container.firstElementChild;
+ expect(wrapper).not.toBeNull();
+ const className = wrapper?.className ?? "";
+
+ // The prose plugin from @tailwindcss/typography adds ::before/::after
+ // pseudo-elements with literal backticks on every tag. Without
+ // these overrides the drawer renders `never expire` with visible
+ // backticks, which is the bug PROWLER-1729 fixes.
+ expect(className).toMatch(/prose-code:before:content-none/);
+ expect(className).toMatch(/prose-code:after:content-none/);
+ });
+});
diff --git a/ui/components/findings/markdown-container.tsx b/ui/components/findings/markdown-container.tsx
index 5756a8ad5c..f586000fa5 100644
--- a/ui/components/findings/markdown-container.tsx
+++ b/ui/components/findings/markdown-container.tsx
@@ -5,7 +5,7 @@ interface MarkdownContainerProps {
}
export const MarkdownContainer = ({ children }: MarkdownContainerProps) => (
-