File: render_markdown.rs

package info (click to toggle)
rust-octocrab 0.43.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,532 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#[tokio::main]
async fn main() -> octocrab::Result<()> {
    let markdown = "**Markdown**";
    print!(
        "{}",
        octocrab::instance().markdown().render_raw(markdown).await?
    );
    Ok(())
}