gemini2html 0.2.1

Simple library for parsing Gemini (gmi) to HTML format
Documentation

gmi2html

Library for parsing Gemini Text to HTML format

Example usage:

use gemini2html::parse_to_html;

let header = "# Title\n ## Description";
let html: Vec<String> = parse_to_html(header).unwrap();

assert_eq!(html, vec!["<h1>Title</h1>", "<h2>Description</h2>"])