TeaCat Lib
This crate contains basic tools for working with TeaCat files.
use *;
let tc_str = "
# simple website
:head [
:title My Website
]
:body [
:p Hello, World!
]
";
let ast = try_from?;
let expanded = expand?;
let html = render;
assert_eq!;