Returns description raw string Returns empty string if this link doesn't contain description ```rust use orgize::{Org, ast::Link}; let link = Org::parse("[[https://google.com]]").first_node:: ().unwrap(); assert_eq!(link.description_raw(), ""); let link = Org::parse("[[https://google.com][Google]]").first_node:: ().unwrap(); assert_eq!(link.description_raw(), "Google"); let link = Org
(&self)
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected