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