Turns Gemtext into idiomatic HTML.
use html_from_gemtext;
let document = "# Hello, world!";
let output = html_from_gemtext;
assert!;
By default, the output includes a comment that points to gemrendr's public source code repository. To omit this line, configure render options like so:
use ;
let options = RenderOptions ;
let document = "# Hello, world!";
let output = html_from_gemtext;
assert_eq!;
See [RenderOptions] for more available options.