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 mut executor = default;
let ast = try_from?;
let dom = executor.exec_ast?;
let html = render;
assert_eq!;