From 18e28a19ee895fc7aa3140ff4f2659a4a852e78c Mon Sep 17 00:00:00 2001 From: danstotts-ops Date: Sun, 14 Jun 2026 19:05:25 -0600 Subject: [PATCH 1/2] docs: add connect workflow page to navigation --- docs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/docs.json b/docs.json index 3f1724d7..61e1bb39 100644 --- a/docs.json +++ b/docs.json @@ -39,6 +39,7 @@ "pages": [ "overview", "get-started", + "get-started/connect-to-runpod", "get-started/concepts", "get-started/api-keys", "get-started/agent-skills", From ff360e1864db54a9811a42eec9270b96af7bcb56 Mon Sep 17 00:00:00 2001 From: Dan Stotts Date: Fri, 26 Jun 2026 17:16:32 -0500 Subject: [PATCH 2/2] Fix Ahrefs "broken image" false positive in SDXL Turbo tutorial The example JS built the result image with innerHTML containing a literal ``. Mintlify's syntax highlighting let Ahrefs Site Audit scrape that as a real with an unrendered ${imageUrl} src, flagging the page for a broken image. Rewrite the snippet to build the image via document.createElement, which renders identically, is better practice, and removes the scrapeable literal. Co-Authored-By: Claude Opus 4.8 --- tutorials/serverless/generate-sdxl-turbo.mdx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tutorials/serverless/generate-sdxl-turbo.mdx b/tutorials/serverless/generate-sdxl-turbo.mdx index 4f7f7127..a4b9bc76 100644 --- a/tutorials/serverless/generate-sdxl-turbo.mdx +++ b/tutorials/serverless/generate-sdxl-turbo.mdx @@ -248,8 +248,10 @@ async function generateImage() { if (data && data.output && data.output.images && data.output.images.length > 0) { const imageBase64 = data.output.images[0].image; const imageUrl = `data:image/png;base64,${imageBase64}`; - document.getElementById("imageResult").innerHTML = - `Generated Image`; + const img = document.createElement("img"); + img.src = imageUrl; + img.alt = "Generated Image"; + document.getElementById("imageResult").replaceChildren(img); } else if (data && data.error) { alert(`Error: ${data.error}`); } else {