```rust use orgize::{Org, ast::Cloze}; let cloze = Org::parse("{{text}}").first_node:: ().unwrap(); assert!(cloze.id().is_none()); let cloze = Org::parse("{{text}@}").first_node:: ().unwrap(); assert_eq!(cloze.id().unwrap(), ""); let cloze = Org::parse("{{text}@id}").first_node:: ().unwrap(); assert_eq!(cloze.id().unwrap(), "id"); ```
(&self)
source not stored for this graph (policy: none)