use ;
/// Simple HTML escaping, so strings can be safely rendered.
///
/// ```rust
/// //# use html_escaping;
///
/// // let mut buf = String::new();
/// // escape_html(r#"<hello world="attribute" />"#, &mut buf).unwrap();
/// // assert_eq!(buf, "<hello world="attribute" />");
/// ```