Skip to content

Commit 60bcdb9

Browse files
committed
Merge branch 'devin/1761152906-docs-product-sentence-case' of https://github.com/fern-api/docs into devin/1761152906-docs-product-sentence-case
2 parents 992496e + fe8db63 commit 60bcdb9

File tree

14 files changed

+117
-67
lines changed

14 files changed

+117
-67
lines changed

fern/fern.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"organization": "fern",
3-
"version": "0.93.1"
4-
}
3+
"version": "0.94.2"
4+
}

fern/products/ask-fern/pages/configuration/custom-prompting.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Custom Prompting
2+
title: Custom prompting
33
subtitle: Learn how to add your own prompts to our AI Search feature.
44
---
55

66
Out of the box, our AI Search feature uses default prompts to help fine-tune search results. You can reference these in our [system prompts](https://github.com/fern-api/fern-platform/blob/app/packages/fern-docs/search-server/ask-fern/src/utils/system-prompt.ts) file.
77

88
Customizing the system prompt gives you the ability to tailor the AI search responses to best serve your users. You can replace the default prompt with your own prompt to increase the relevance and accuracy of the results.
99

10-
## Customizing Prompts
10+
## Customizing prompts
1111

1212
<Steps>
13-
<Step title="Getting Started">
13+
<Step title="Getting started">
1414
Run `fern upgrade` to ensure you have the latest version of Fern installed.
1515
</Step>
1616
<Step title="Configure docs.yml">

fern/products/ask-fern/pages/configuration/locations-and-datasources.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Locations and Datasources
2+
title: Locations and datasources
33
subtitle: Configure where Ask Fern is available and what content it can access.
44
---
55

@@ -17,7 +17,7 @@ ai-search:
1717
- discord
1818
```
1919
20-
### Available Locations
20+
### Available locations
2121
2222
<ParamField path="docs" type="string">
2323
Enables Ask Fern on your documentation site. Users will see the AI search interface directly in your docs.
@@ -44,7 +44,7 @@ ai-search:
4444
title: Company Blog
4545
```
4646

47-
### Website Datasources
47+
### Website datasources
4848

4949
<ParamField path="url" type="string" required>
5050
The URL of the website to index. Ask Fern will crawl and index the content from this URL.
@@ -54,15 +54,15 @@ ai-search:
5454
An optional display name for this datasource. This helps users understand where the information is coming from when Ask Fern cites content from this source.
5555
</ParamField>
5656

57-
## Preview Environments
57+
## Preview environments
5858

5959
Setting `location: [docs]` enables Ask Fern on preview deployments generated with `fern generate --docs --preview`, allowing you to test the AI search functionality before publishing to production.
6060

6161
<Note>
6262
Preview environments don't interfere with your production Ask Fern deployment.
6363
</Note>
6464

65-
## Best Practices
65+
## Best practices
6666

6767
<AccordionGroup>
6868
<Accordion title="Start with docs location">

fern/products/cli-api-reference/cli-changelog/2025-10-04.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
## 0.84.7
6-
**`(fix):`** Fixes `displayName` generation to be stricter for `oneOf` variants.
6+
**`(fix):`** Fixes `displayName` generation to be stricter for `oneOf` variants.
77
Now, a display name will be set if a `summary` or `title` is provided for a variant, otherwise none will be generated.
88

99

fern/products/cli-api-reference/cli-changelog/2025-10-06.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ settings:
1414
1515
page-actions:
1616
default: cursor
17-
options:
17+
options:
1818
chatgpt: false
1919
claude: true
2020
vscode: true

fern/products/cli-api-reference/cli-changelog/2025-10-15.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## 0.93.0
2-
**`(feat):`** Turns HTTP snippets on by default in docs generation.
2+
**`(feat):`** Turns HTTP snippets on by default in docs generation.
33

4-
To turn HTTP snippets off, set `settings.http-snippets: false` in the `docs.yml` file. You can also specify an explicit list of snippets to include.
4+
To turn HTTP snippets off, set `settings.http-snippets: false` in the `docs.yml` file. You can also specify an explicit list of snippets to include.
55

66
```docs.yml
77
# this will only generate typescript and python snippets, no curl
@@ -13,7 +13,7 @@ settings:
1313

1414

1515
## 0.92.0
16-
**`(feat):`** For debugging purposes, generating a docs preview via `fern generate --docs --preview`, it is now possible to specify `--skip-upload` to
16+
**`(feat):`** For debugging purposes, generating a docs preview via `fern generate --docs --preview`, it is now possible to specify `--skip-upload` to
1717
skip the asset uploading step.
1818

1919

fern/products/cli-api-reference/cli-changelog/2025-10-22.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.94.1
2+
**`(fix):`** Undo change to skip bundling APIs with docs creation request.
3+
4+
5+
## 0.94.0
6+
**`(feat):`** Handle npm OIDC token publishing for local workspace generation.
7+
8+
19
## 0.93.4
210
**`(fix):`** Skip bundling APIs with docs creation request.
311

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## 0.94.3
2+
**`(fix):`** Fix broken recursive unescaping of \ during handling of \$ in IR generation.
3+
4+
5+
## 0.94.2
6+
**`(fix):`** Improve IR hashing in IntermediateRepresentationChangeDetector.
7+
Previously it looked at the entire IR. Now it only compares the
8+
parts of the IR that describe the API interface.
9+
10+

fern/products/docs/docs.yml

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ navigation:
194194
path: ./pages/seo/redirects.mdx
195195
- page: llms.txt
196196
path: ./pages/seo/llms-txt.mdx
197+
slug: llms-txt
197198
- section: Authentication
198199
collapsed: true
199200
contents:
@@ -219,28 +220,30 @@ navigation:
219220
path: ./pages/enterprise/self-hosted-set-up.mdx
220221
slug: set-up
221222
hidden: true
222-
- section: Integrations
223+
- section: Analytics & integrations
224+
slug: integrations
223225
collapsed: true
224226
contents:
225227
- page: Overview
226228
path: ./pages/integrations/overview.mdx
227-
- section: Analytics
228-
contents:
229-
- page: Google
230-
path: ./pages/integrations/analytics/google.mdx
231-
- page: PostHog
232-
path: ./pages/integrations/analytics/posthog.mdx
233-
slug: posthog
234-
- page: Fullstory
235-
path: ./pages/integrations/analytics/fullstory.mdx
236-
- page: Segment
237-
path: ./pages/integrations/analytics/segment.mdx
238-
- page: Mixpanel
239-
path: ./pages/integrations/analytics/mixpanel.mdx
240-
- section: Support
241-
contents:
242-
- page: Intercom
243-
path: ./pages/integrations/support/intercom.mdx
229+
- page: Intercom
230+
path: ./pages/integrations/support/intercom.mdx
231+
slug: support/intercom
232+
- page: Google
233+
path: ./pages/integrations/analytics/google.mdx
234+
slug: analytics/google
235+
- page: PostHog
236+
path: ./pages/integrations/analytics/posthog.mdx
237+
slug: analytics/posthog
238+
- page: Fullstory
239+
path: ./pages/integrations/analytics/fullstory.mdx
240+
slug: analytics/fullstory
241+
- page: Segment
242+
path: ./pages/integrations/analytics/segment.mdx
243+
slug: analytics/segment
244+
- page: Mixpanel
245+
path: ./pages/integrations/analytics/mixpanel.mdx
246+
slug: analytics/mixpanel
244247
- page: Postman
245248
path: ./pages/integrations/postman.mdx
246249
- page: LaunchDarkly feature flags

fern/products/docs/pages/integrations/overview.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Integrations"
2+
title: "Analytics and integrations"
33
description: "Integrate with third party platforms for analytics, support, etc."
44
---
55

@@ -69,7 +69,7 @@ analytics:
6969
7070
### Environment Variables
7171
72-
If your docs configuration is public, then we do not advise adding secret values directly to `docs.yml`.
72+
If your docs configuration is public, then we don't advise adding secret values directly to `docs.yml`.
7373
Instead, you can reference an environment variable by using the syntax `${VARIABLE_NAME}`.
7474

7575
<Note>
@@ -91,7 +91,7 @@ are available during the workflow run.
9191
## Postman
9292

9393
<Info>
94-
The Postman integration is not configured in `docs.yml`. Check out this [page](/learn/docs/integrations/postman) to
94+
The Postman integration isn't configured in `docs.yml`. Check out this [page](/learn/docs/integrations/postman) to
9595
learn more.
9696
</Info>
9797

0 commit comments

Comments
 (0)