You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
generator into docs-v2
Move Lambda@Edge function from docs-tooling to
deploy/llm-markdown with
shared conversion library using relative imports. Update
documentation.
docs.influxdata.com uses a Lambda@Edge function for on-demand markdown generation from HTML documentation. The generated markdown files are an alternative rendering of the documentation designed to be used by generative engines such as LLMs, coding assistants, and agents.
6
-
7
-
### Overview
8
-
9
-
The Lambda@Edge function intercepts CloudFront requests for `.md` files (primarily served for LLM consumption) and generates them on-demand from S3-hosted HTML content.
5
+
docs.influxdata.com uses a Lambda\@Edge function for on-demand markdown generation from HTML documentation. The generated markdown files are optimized for LLMs, coding assistants, and agents.
10
6
11
7
### Architecture
12
8
@@ -19,11 +15,71 @@ Lambda@Edge (Origin Request)
19
15
↓
20
16
Fetch HTML from S3
21
17
↓
22
-
Convert to Markdown
18
+
Convert to Markdown (using shared library)
23
19
↓
24
20
Return to CloudFront (cached 1hr)
25
21
↓
26
22
User receives Markdown
27
23
```
28
24
29
-
See the `influxdata/docs-tooling` private repository for details.
25
+
### Repository Structure
26
+
27
+
All markdown generation code is in this repository:
0 commit comments