#handlebars #generate #content #quickly #documentation #render #flexibly

bin+lib handlebars-magic

Quickly and flexibly generate content based on handlebars templates

7 releases (breaking)

new 0.6.0 Apr 21, 2024
0.5.0 Apr 10, 2024
0.4.0 Apr 7, 2022
0.3.1 May 23, 2021
0.1.0 May 5, 2021

#96 in Template engine

Download history 3/week @ 2024-02-23 1/week @ 2024-03-01 6/week @ 2024-03-29 130/week @ 2024-04-05 25/week @ 2024-04-12 106/week @ 2024-04-19

267 downloads per month

Unlicense OR MIT

14KB
136 lines

Quickly and flexibly generate content based on handlebars templates

Dual-licensed under MIT or the UNLICENSE.

Installation

cargo install handlebars-magic

Usage

Generates documentation from handlebars templates

Usage: handlebars-magic <INPUT> <OUTPUT>

Arguments:
  <INPUT>   The input folder with templates
  <OUTPUT>  The output folder

Options:
  -h, --help     Print help
  -V, --version  Print version

For each file in the input folder, a corresponding file will be created in the output folder.

For example, this project generates updated documentation using the following call:

handlebars-magic templates .

Supported helpers

from

Searches for the prefix and starts with it if it is found. Otherwise, the entire string is returned.

{{ from "begin" "prefix begin text end" }}

renders to:

begin text end

to

Searches for the prefix and starts with it if it is found. Otherwise, the entire string is returned.

{{ to ")" "hello)" }}

renders to:

hello

render

Processes an argument as handlebars's template.

{{ render "some handlebars template" }}

renders to:

some handlebars template

This does not look useful until we use it in conjuction with other helper such as read_to_str from handlebars_misc_helpers:

{{ render ( read_to_str "templates/README.md" ) }}

codeblock

Allows to insert markdown's fenced code block. Content would be trimmed.

{{ codeblock "bash" "echo test" }}

renders to:

```bash
echo test
```

exec

Allows to include output of command.

{{ exec "echo test" }}

renders to:

test

handlebars_misc_helpers

All helpers from handlebars_misc_helpers.

Dependencies

~14MB
~283K SLoC