(includePath string)
| 326 | } |
| 327 | |
| 328 | func includeDirectiveFilePath(includePath string) string { |
| 329 | // Note: section references are ignored for frontmatter field extraction. |
| 330 | if strings.Contains(includePath, "#") { |
| 331 | parts := strings.SplitN(includePath, "#", 2) |
| 332 | return parts[0] |
| 333 | } |
| 334 | return includePath |
| 335 | } |
no outgoing calls
no test coverage detected