Mustache templates in pure bash
Go to file
2015-01-27 08:29:08 -06:00
demo Newlines now match up with what you'd expect 2015-01-23 18:07:30 +00:00
spec@934db98d8b Adding code to test against official tests 2015-01-23 20:26:21 +00:00
tests Adding better block detection 2015-01-26 12:51:28 -06:00
.gitignore Adding support for partials and lambdas 2015-01-26 12:50:11 -06:00
.gitmodules Adding code to test against official tests 2015-01-23 20:26:21 +00:00
LICENSE.md Initial commit 2015-01-23 17:43:08 +00:00
mo Removed one global variable 2015-01-27 08:29:08 -06:00
README.md Typo! 2015-01-27 09:15:41 +00:00
run-spec.js Fixing newlines in shell scripts 2015-01-26 15:08:23 -06:00
run-tests In case of error, pipe something in 2015-01-23 18:05:27 +00:00

Mo - Mustache Templates in Bash

Mustache templates are simple, logic-less templates. Because of their simplicity, they are able to be ported to many languages. The syntax is quite simple.

Hello, {{NAME}}.

I hope your {{TIME_PERIOD}} was fun.

Let's try using this with some data in bash. Save those lines to trip.txt and run a command like this:

NAME=Tyler TIME_PERIOD=weekend ./mo weekend-trip.txt

Your result?

Hello, Tyler.

I hope your weekend was fun.

This bash version supports conditionals, functions (both as filters and as values), as well as indexed arrays (for iteration). You are able to leverage these additional features by adding more information into the environment. It is easiest to do this when you source mo. See the demo scripts for further examples.

Requirements

  • Bash 3.x (the aim is to make it work on Macs)
  • The "coreutils" package (basename and cat)
  • ... that's it. Why? Because bash can!

If you intend to develop this and run the official specs, you also need node.js.

Concessions

I admit that implementing everything in bash just doesn't make a lot of sense. For example, the following things just don't work because they don't really mesh with the "bash way".

Pull requests to solve the following issues would be helpful.

Mustache Syntax

  • Dotted names are not supported and this means associative arrays are not addressable via their index. Partly this is because our target (Bash 3) does not support associative arrays.
  • There's no "top level" object, so echo '{.}' | ./mo does not do anything useful. In other languages you can say the data for the template is a string and in mo the data is always the environment. Luckily this type of usage is rare and {.} works great when iterating over an array.
  • HTML encoding is not built into mo. {{{var}}}, {{&var}} and {{var}} all do the same thing. echo '{{TEST}}' | TEST='<b>' mo will give you "<b>" instead of "&gt;b&lt;".
  • You can not change the delimiters.

General Scripting Issues

  • Using binary files as templates is simply not allowed.
  • Bash does not support nested structures like fancy objects. The best you can do are arrays. I'm not able to add super complex structures to bash - it's just a shell after all!
  • You must make sure the data is in the environment when mo runs. The easiest way to do that is to source mo in your shell script after setting up lots of other environment variables / functions.

Developing

Check out the code and hack away. Please add tests to show off bugs before fixing them. New functionality should also be covered by a test.

To run against the official specs, you need to make sure you have the "spec" submodule. If you see a spec/ folder with stuff in it, you're already set. Otherwise run git submodule update --init. After that you need to install node.js and run npm install async (no, I didn't make a package.json to just list one dependency). Finally, ./run-spec.js spec/specs/*.json will run against the official tests - there's over 100 of them.

Failed Specs

It is acceptable for some of the official spec tests to fail. Anything dealing with multiple levels of objects (eg. {{a.b.c}}) and changing the delimiters ({{= | | =}} will fail. Other than that, this bash implementation of the mustache spec should pass tests.

Specific issues:

  • Interpolation - Multiple Calls: This fails because lambdas execute in a subshell so their output can be captured. This is flagged as a TODO in the code.
  • HTML Escaping - Since bash is not often executed in a web server context, it makes no sense to have the output escaped as HTML. Performing shell escaping of variables may be an option in the future if there's a demand.

Future Enhancements

There's a few places in the code marked with TODO to signify areas that could use improvement. Care to help? Keep in mind that this uses bash exclusively, so it might not look the prettiest.

License

This program is licensed under an MIT license with an additional non-advertising clause. See LICENSE.md for the full text.