February 6, 2026

Deep linking for Ask Fern

Open Ask Fern or the search dialog directly from a URL using query parameters. Append ?searchType=ai&query={prompt} to open Ask AI with a prompt, or ?query={search} for regular search. Parameters are removed from the URL after the search opens.

Read the docs

Global folder title source setting

Set a default title-source for all folder navigations using the new folder-title-source option in settings. Individual folders can still override this value with their own title-source.

docs.yml
1settings:
2 folder-title-source: frontmatter
3
4navigation:
5 - folder: ./pages/guides # uses frontmatter (from global setting)
6 - folder: ./pages/reference
7 title-source: filename # overrides global setting
Read the docs