partialsRemark() — supabase Function Reference
Architecture documentation for the partialsRemark() function in Partial.ts from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD e170640f_c973_07c3_1dca_4410298488e1["partialsRemark()"] 67a945e1_7550_1b68_2ba7_665ba0ff6278["preprocessMdxWithDefaults()"] 67a945e1_7550_1b68_2ba7_665ba0ff6278 -->|calls| e170640f_c973_07c3_1dca_4410298488e1 e4dca78c_a009_9457_9893_c32a01231d09["fetchPartialsContent()"] e170640f_c973_07c3_1dca_4410298488e1 -->|calls| e4dca78c_a009_9457_9893_c32a01231d09 f759d72f_4789_4f16_671d_55f55b4a2ad9["rewriteNodes()"] e170640f_c973_07c3_1dca_4410298488e1 -->|calls| f759d72f_4789_4f16_671d_55f55b4a2ad9 style e170640f_c973_07c3_1dca_4410298488e1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/docs/features/directives/Partial.ts lines 46–57
export function partialsRemark() {
return async function transform(tree: Root) {
while (true) {
const contentMap = await fetchPartialsContent(tree)
rewriteNodes(contentMap)
if (contentMap.size === 0) {
break
}
}
return tree
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does partialsRemark() do?
partialsRemark() is a function in the supabase codebase.
What does partialsRemark() call?
partialsRemark() calls 2 function(s): fetchPartialsContent, rewriteNodes.
What calls partialsRemark()?
partialsRemark() is called by 1 function(s): preprocessMdxWithDefaults.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free