It looks like empty headlines' tags get treated as part of the raw, and the tags not picked up. ``` fn main() { let org = orgize::Org::parse("* :a:"); assert_eq!(vec!("a"), org.headlines().next().unwrap().title(&org).tags); } ```