A trait for enumerating org syntax tree ### `TraversalContext` `TraversalContext` can be used to control the traversal. For example, `ctx.skip()` will skips the traversal for current element and its descendants and improve the traversal performance. ```rust use orgize::{ export::{Container, Event, HtmlExport, TraversalContext, Traverser}, Org, }; use slugify::slugify; #[derive(Default)] struc
source not stored for this graph (policy: none)
no outgoing calls
no test coverage detected