Add a doctest for blank_line() #16

Merged
cadey merged 3 commits from :blank-line-doctest into main 2020-12-10 12:47:33 +00:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit e44decab07 - Show all commits

View File

@ -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::*;