Return unescaped source code string ```rust use orgize::{Org, ast::SourceBlock}; let block = Org::parse(r#" #+begin_src #+end_src "#).first_node:: ().unwrap(); assert_eq!(block.value(), ""); let block = Org::parse(r#" #+begin_src ,* foo ,#+ bar #+end_src "#).first_node:: ().unwrap(); assert_eq!(block.value(), "* foo\n#+ bar\n"); ````
(&self)
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected