package handlebars-ml
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Handlebars templating for OCaml
Install
dune-project
Dependency
Authors
Maintainers
Sources
0.3.1.tar.gz
md5=b77cb69ac47130e5caf1d800875c21b2
sha512=a60a707427fb84c7421f9f830b1310abe627810659fdeded987f97f768d1409a0cf1899ec734639b8166589a67559c42fb1a82f9c4723b6bd0cac615972c302c
doc/README.html
handlebars-ml
Handlebars templating for OCaml.
Installation
Install with opam:
opam install handlebars-mlCLI usage
opam install handlebars-ml
handlebars-ml -d data.json template.hbsOptionally, pass a partials directory with -p partials_dir.
Pass the -h (or --help) flag to see all options.
handlebars-ml -hLibrary usage
Use Yojson values for passing JSON data as template context.
open Handlebars_ml
let () =
let data = Yojson.Safe.from_string {| { "name": "World" } |} in
let template = "Hello, {{name}}!" in
match Handlebars.compile template data with
| Ok result -> print_endline result
| Error err -> prerr_endline ("Error: " ^ err)Pass get_helper and get_partial functions as named arguments to compile to use custom helpers and partials. Use JSON types for arguments and return values.
open Handlebars_ml
let custom_get_helper name =
let shout = function
| [ `String s ] -> Some (`String (String.uppercase_ascii arg))
| _ -> None
in
match name with
| "shout" -> Some shout
| _ -> Handlebars.default_get_helper name
let () =
let data = Yojson.Safe.from_string {| { "name": "World" } |} in
let template = "Hello, {{shout name}}!" in
match Handlebars.compile ~get_helper:custom_get_helper template data with
| Ok result -> print_endline result
| Error err -> prerr_endline ("Error: " ^ err)handlebars-ml provides a default_get_helper function in Handlebars_ml that can be used in your custom implementation to still keep the default helpers.
License
MIT
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page