(frontmatter_json: &str)
| 632 | } |
| 633 | |
| 634 | fn frontmatter_name(frontmatter_json: &str) -> Option<String> { |
| 635 | frontmatter_string(frontmatter_json, &["name"]) |
| 636 | } |
| 637 | |
| 638 | fn frontmatter_memory_id(frontmatter_json: &str) -> Option<String> { |
| 639 | let id = frontmatter_string(frontmatter_json, &["@id", "uid", "id"])?; |
no test coverage detected