statica 0.50.4

A blazingly fast static site generator that builds on just HTML
Documentation
//! Build-time data funnel (`serde_json::Value` from linked data files).

mod bind_decl;
mod json;
mod template;

pub(crate) use bind_decl::is_identifier;
pub use bind_decl::{
    bind_context, parse_bind_decl, validate_page_template_binds,
    validate_template_binds_with_roots, BindDecl, BindSource,
};
pub use json::{
    data_link_has_dynamic_href, data_link_ids, document_has_dynamic_data, field_as_str,
    find_fragment_links, find_template, load_data_from_document, load_dynamic_data_from_document,
    load_dynamic_data_from_fragment_template, path_as_str, path_value, read_field, resolve_expr,
    strip_authoring, value_to_html, DataSource,
};
pub use template::{
    has_template_tokens, template_tokens, DottedPath, TemplatePlaceholder, TemplateToken,
};