|
|
@ -109,6 +109,15 @@ impl AsMut<[Node]> for Builder { |
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Builder> for Vec<Node> {
|
|
|
|
/// Convert into a collection of [`Node`]s.
|
|
|
|
///
|
|
|
|
/// Equivilent to calling [`Builder::build()`]
|
|
|
|
fn from(builder: Builder) -> Self {
|
|
|
|
builder.build()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Render a set of nodes as a document to a writer.
|
|
|
|
pub fn render(nodes: impl AsRef<[Node]>, out: &mut impl Write) -> io::Result<()> {
|
|
|
|
use Node::*;
|
|
|
|