resolveInlinedImports returns true if inlined-imports is enabled. It reads the value directly from the raw (pre-parsed) frontmatter map, which is always populated regardless of whether ParseFrontmatterConfig succeeded.
(rawFrontmatter map[string]any)
| 448 | // It reads the value directly from the raw (pre-parsed) frontmatter map, which is always |
| 449 | // populated regardless of whether ParseFrontmatterConfig succeeded. |
| 450 | func resolveInlinedImports(rawFrontmatter map[string]any) bool { |
| 451 | return ParseBoolFromConfig(rawFrontmatter, "inlined-imports", nil) |
| 452 | } |
| 453 | |
| 454 | // extractYAMLSections extracts YAML configuration sections from frontmatter |
| 455 | func (c *Compiler) extractYAMLSections(frontmatter map[string]any, workflowData *WorkflowData) error { |
no test coverage detected