telegraph-rs

crates.io Documentation

telegraph binding in Rust

see https://telegra.ph/api for more information

Examples

```rust use telegraphrs::{Telegraph, htmlto_node};

let telegraph = Telegraph::new("test_account").create().unwrap();

let page = telegraph.createpage("title", &htmlto_node("

Hello, world

"), false).unwrap(); ```