quilt-api 0.2.0

Non-web API for representing quilt4 data structures.
Documentation
1
2
3
4
5
6
7
8
9
use maud;
use poem_openapi::payload;

pub mod manifest;
pub mod uri;

pub fn markup_to_html(output: maud::Markup) -> payload::Html<String> {
    payload::Html(output.into_string())
}