(frontmatter_json: &str)
| 686 | } |
| 687 | |
| 688 | fn frontmatter_name(frontmatter_json: &str) -> Option<String> { |
| 689 | frontmatter_string(frontmatter_json, &["name"]) |
| 690 | } |
| 691 | |
| 692 | fn frontmatter_memory_id(frontmatter_json: &str) -> Option<String> { |
| 693 | let id = frontmatter_string(frontmatter_json, &["@id", "uid", "id"])?; |
no test coverage detected