1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*! Provides the ability to produce formatted, readable, versions of a policy document. TBD # Example Usage ```rust,ignore let generator = MarkdownGenerator::default(); report::walk_policy(&policy, &generator, &mut stdout()); ``` # Building a new Visitor TBD */ // ------------------------------------------------------------------------------------------------ // Modules // ------------------------------------------------------------------------------------------------ mod markdown; pub use markdown::*; mod latex; pub use latex::*; mod visitor; pub use visitor::*;