Mustache templates

A Dart library to parse and render mustache templates.

Example

import 'package:mustache/mustache.dart';

main() {
	var source = '{{#section}}_{{var}}_{{/section}}';
	var values = {"section": {"var": "bob"}};
	var template = parse(source);
	var output = template.render(values);
	print(output);
}