fluent-templates
: Templating for Fluent.This crate provides you with the ability to create [Fluent] loaders for use in templating engines such as handlebars and tera.
``rust
//! Requires
--features handlebars`.
use fluenttemplates::*;
use handlebars::*;
use serdejson::*;
staticloader!(createloader, "./locales/", "en-US");
fn init(handlebars: &mut Handlebars) { let loader = createloader(); let helper = FluentHelper::new(loader); handlebars.registerhelper("fluent", Box::new(helper)); }
fn renderpage(handlebars: &Handlebars) -> String { let data = json!({"lang": "zh-CN"}); handlebars.rendertemplate("{{fluent \"foo-bar\"}} baz", &data).unwrap() } ```