* Process template variables in body content
( bodyContent: string, taskData: TemplateData | ICSTemplateData )
| 143 | * Process template variables in body content |
| 144 | */ |
| 145 | function processTemplateBody( |
| 146 | bodyContent: string, |
| 147 | taskData: TemplateData | ICSTemplateData |
| 148 | ): string { |
| 149 | return processTemplateVariables(bodyContent, taskData); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Process template variables for YAML frontmatter with proper quoting |
no test coverage detected