Returns parsed title ```rust use orgize::{Org, ast::Headline, SyntaxKind}; let hdl = Org::parse("*** abc *abc* /abc/ :tag:").first_node:: ().unwrap(); let title = hdl.title().collect:: >(); assert_eq!(title[1].kind(), SyntaxKind::BOLD); assert_eq!(title[1].to_string(), "*abc*"); assert_eq!(title[3].kind(), SyntaxKind::ITALIC); assert_eq!(title[3].to_string(), "/abc/"); ```
(&self)
source not stored for this graph (policy: none)