diff --git a/README.md b/README.md index 32330a4..09ceba3 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ use accessibility_rs::{audit, AuditConfig}; fn main() { let html = r###" - + Golf - - + + "###; let css = ""; // pass in raw html, optional css, bounding box clips, and locale for audit @@ -41,13 +41,13 @@ use tokio; #[tokio::main] async fn main() { - let html = r###" - + let html = r###" + Golf - - + + "###; let css = ""; // pass in raw html, optional css, bounding box clips, and locale for audit @@ -69,14 +69,11 @@ use tokio; #[tokio::main] async fn main() { - let css = ""; - // pass in raw html, optional css, bounding box clips, and locale for audit let audit = accessibility_rs::audit(&AuditConfig::new_website(&"https://choosealicense.com".into())).await; println!("{:?}", audit); } ``` - ### Documentation [Module documentation with examples](https://docs.rs/accessibility-rs).