diff --git a/src/content/docs/browser-rendering/reference/supported-fonts.mdx b/src/content/docs/browser-rendering/reference/supported-fonts.mdx index 7a7cd7882c82f58..2253aba4a31316a 100644 --- a/src/content/docs/browser-rendering/reference/supported-fonts.mdx +++ b/src/content/docs/browser-rendering/reference/supported-fonts.mdx @@ -70,7 +70,7 @@ Browser Rendering includes additional font packages for non-Latin scripts and em If a required font is not pre-installed, you can inject it into the page at render time using `addStyleTag`. This allows you to load fonts from an external URL or embed them directly as a Base64 string. -Example with puppeteer and a CDN source: +Example with [Puppeteer](/browser-rendering/platform/puppeteer/) and a CDN source: ```js const browser = await puppeteer.launch(env.MYBROWSER); @@ -92,7 +92,7 @@ await page.addStyleTag({ ``` -Example with puppeteer and a CDN source: +Example with [Puppeteer](/browser-rendering/platform/puppeteer/) and a CDN source: ```ts const browser = await puppeteer.launch(env.MYBROWSER); @@ -117,7 +117,7 @@ await page.addStyleTag({ -Example with playwright and a Base64 encoded data source: +Example with [Playwright](/browser-rendering/platform/playwright/) and a Base64 encoded data source: ```js const browser = await playwright.launch(env.MYBROWSER); @@ -139,10 +139,10 @@ await page.addStyleTag({ ``` -Example with playwright and a Base64 encoded data source: +Example with [Playwright](/browser-rendering/platform/playwright/) and a Base64 encoded data source: ```ts -const browser = await puppeteer.launch(env.MYBROWSER); +const browser = await playwright.launch(env.MYBROWSER); const page = await browser.newPage(); await page.addStyleTag({ content: `