From cf46cd0ea23367ef58bc49c2a27f0cf4c7c08ef1 Mon Sep 17 00:00:00 2001 From: oeggert <117319296+oeggert@users.noreply.github.com> Date: Thu, 11 Jun 2026 09:59:22 -0700 Subject: [PATCH] Update @theme/components/SourceLink.tsx Co-authored-by: Maria Shodunke --- @theme/components/SourceLink.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@theme/components/SourceLink.tsx b/@theme/components/SourceLink.tsx index 9f4cd5abf1..eaee7eaee8 100644 --- a/@theme/components/SourceLink.tsx +++ b/@theme/components/SourceLink.tsx @@ -15,7 +15,7 @@ function buildSourceHref(path: string, release: string): string { // SourceLink for rendered page link export function sourceLinkForLlms(node: Node): string { const release = process.env.PUBLIC_XRPLD_RELEASE || '' - return `[Source] ${buildSourceHref(node.attributes.path, release)}` + return `[Source](${buildSourceHref(node.attributes.path, release)})` } export default function SourceLink(props: {