Render syntax node to markdown string ```rust use orgize::{Org, ast::Bold, export::MarkdownExport, rowan::ast::AstNode}; let org = Org::parse("* /hello/ *world*"); let bold = org.first_node:: ().unwrap(); let mut markdown = MarkdownExport::default(); markdown.render(bold.syntax()); assert_eq!(markdown.finish(), "**world**"); ```
(&mut self, node: &SyntaxNode)
source not stored for this graph (policy: none)