getRssString() — astro Function Reference
Architecture documentation for the getRssString() function in index.ts from the astro codebase.
Entity Profile
Dependency Diagram
graph TD 39f7c782_b8c0_c38e_4d52_c808fe876c46["getRssString()"] 6ef7bfdb_4b52_2205_aa0f_e41748222587["index.ts"] 39f7c782_b8c0_c38e_4d52_c808fe876c46 -->|defined in| 6ef7bfdb_4b52_2205_aa0f_e41748222587 056f0480_6277_056e_6067_aa31d2da0815["getRssResponse()"] 056f0480_6277_056e_6067_aa31d2da0815 -->|calls| 39f7c782_b8c0_c38e_4d52_c808fe876c46 b14ed590_b94e_1c67_3d04_8347d087b61b["validateRssOptions()"] 39f7c782_b8c0_c38e_4d52_c808fe876c46 -->|calls| b14ed590_b94e_1c67_3d04_8347d087b61b afa06ba6_bbb9_385a_5c1e_7cdf9d6ad746["generateRSS()"] 39f7c782_b8c0_c38e_4d52_c808fe876c46 -->|calls| afa06ba6_bbb9_385a_5c1e_7cdf9d6ad746 style 39f7c782_b8c0_c38e_4d52_c808fe876c46 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/astro-rss/src/index.ts lines 100–103
export async function getRssString(rssOptions: RSSOptions): Promise<string> {
const validatedRssOptions = await validateRssOptions(rssOptions);
return await generateRSS(validatedRssOptions);
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does getRssString() do?
getRssString() is a function in the astro codebase, defined in packages/astro-rss/src/index.ts.
Where is getRssString() defined?
getRssString() is defined in packages/astro-rss/src/index.ts at line 100.
What does getRssString() call?
getRssString() calls 2 function(s): generateRSS, validateRssOptions.
What calls getRssString()?
getRssString() is called by 1 function(s): getRssResponse.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free