fluent-templates: Templating for Fluent.

CI Status Current Version License: MIT/Apache-2.0

This crate provides you with the ability to create [Fluent] loaders for use in templating engines such as handlebars and tera.

Features/Template Engines

Basic handlebars example

``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() } ```