fn main()
{
let full = include_md::include_md!( "../readme.md" );
println!( "readme.md ({} bytes):", full.len() );
println!( "{}", &full[ ..full.len().min( 120 ) ] );
println!( "...\n" );
let section = include_md::include_md_section!( "readme.md", "## Quick Start" );
println!( "## Quick Start section:" );
println!( "{section}" );
}