Returns priority text ```rust use orgize::{Org, ast::Headline}; let hdl = Org::parse("* [#A]").first_node:: ().unwrap(); assert_eq!(hdl.priority().unwrap(), "A"); let hdl = Org::parse("** DONE [#B]::").first_node:: ().unwrap(); assert_eq!(hdl.priority().unwrap(), "B"); let hdl = Org::parse("* [#破]").first_node:: ().unwrap(); assert_eq!(hdl.priority().unwrap(), "破"); ``
(&self)
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected