Embedded mode

View as Markdown

Embedded mode strips the header and footer (including navigation and logo) from a Fern Docs site so a page renders as content only. Use it to:

  • Surface docs inside a product dashboard or admin panel
  • Embed a page in an iframe without the standard navigation chrome
  • Render content-only views in another application

Enable embedded mode

Add the embedded=true query parameter to the URL:

HTML
1 <iframe
2 src="https://elevenlabs.io/docs/overview/intro?embedded=true"
3 style="width: 100%; height: 500px; border: none; border-radius: 8px;"
4 ></iframe>

Embedded mode persists across navigation within a session, so internal links keep it active without the query string on every URL.

Embed external pages

Embedding external pages in your docs uses the same <iframe> syntax, without ?embedded=true.