Compute the indentation level (number of leading spaces) of a line.
(line: &str)
| 888 | |
| 889 | /// Compute the indentation level (number of leading spaces) of a line. |
| 890 | fn indent_level(line: &str) -> usize { |
| 891 | line.len() - line.trim_start().len() |
| 892 | } |
| 893 | |
| 894 | /// YAML frontmatter to JSON conversion. |
| 895 | /// Handles: flat key-value, inline lists/maps, multi-line dash lists, |
no outgoing calls
no test coverage detected