Unofficial Rust library to get a Bionic Reading converted string from their Rapid API.
Allows setting fixation and saccade to values supported by the API. For more information on Bionic Reading see the official page.
The returned string can be used either as raw HTML straight from the response or a Markdown converted version of the HTML.
```rust use bionicreadingapi::client::Client;
async fn main() -> Result<(), Box
let html = res.html().unwrap();
let markdown = res.markdown().unwrap();
println!("{html}");
println!("{markdown}");
Ok(())
} ```