For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
预约演示登录免费开始
  • 入门
    • 概览
    • 工作原理
    • 快速开始
    • 项目结构
    • Customer showcase
    • 变更日志
  • 配置
    • 概览
    • 站点级设置
    • 页面级设置
  • 编写内容
    • Markdown 基础
    • Markdown 中的富媒体
    • Fern 编辑器
    • 可复用代码片段
  • AI 功能
    • 概览
    • Fern Writer
    • AI 生成的示例
    • Markdown 访问
      • 概览
      • Agent 指令
      • 智能体指令
      • 分析与集成
    • MCP 服务器
    • API 目录发现
  • Public API
    • GETJWT from Fern API key
    • GETAlgolia search credentials
    • GETCurrent user information
  • Fern Writer API
    • GETGet Fern Writer Install Link
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
预约演示登录免费开始

Changelog

June 25, 2024
June 25, 2024
此页面是否有帮助?
编辑此页面
上一个

July 30, 2024

下一个

May 22, 2024

2024年6月

RSS 订阅集成

新增了RSS订阅支持,让用户及时了解文档更改。团队现在可以为其文档提供自动化通知。

JSON-LD 增强

通过JSON-LD实现了结构化数据支持,改善SEO效果。文档页面现在可以向搜索引擎和社交平台提供更丰富的信息。

1{
2 "@context": "https://schema.org",
3 "@type": "TechArticle",
4 "headline": "API Authentication Guide",
5 "datePublished": "2024-06-15",
6 "technicalAudience": "Software Developers"
7}

图片缩放控制

新增了可配置的图片缩放功能,支持自定义触发器和行为。用户现在可以更好地检查文档中的图表和技术插图。

page.mdx
1---
2no-image-zoom: true
3---
Read the docs

语法扩展支持

新增对BAML和Jinja等编程语言的语法高亮支持。文档现在可以正确显示更广泛的代码示例。

1<body>
2 <h1>Available Products</h1>
3 {% if products %}
4 <ul>
5 {% for product in products %}
6 <li class="product">
7 <h2>{{ product.name }}</h2>
8 <p class="price">${{ product.price }}</p>
9 <p>{{ product.description }}</p>
10 {% if product.in_stock %}
11 <p><strong>Status:</strong> In Stock</p>
12 {% else %}
13 <p><strong>Status:</strong> Out of Stock</p>
14 {% endif %}
15 </li>
16 {% endfor %}
17 </ul>
18 {% else %}
19 <p>No products are available at the moment.</p>
20 {% endif %}
21</body>