jael

Last updated:

0 purchases

jael Image
jael Images
Add to Cart

Description:

jael

jael #


A simple server-side HTML templating engine for Dart.
See documentation.
Installation #
In your pubspec.yaml:
dependencies:
jael: ^2.0.0
copied to clipboard
API #
The core jael package exports classes for parsing Jael templates,
an AST library, and a Renderer class that generates HTML on-the-fly.
import 'package:code_buffer/code_buffer.dart';
import 'package:jael/jael.dart' as jael;
import 'package:symbol_table/symbol_table.dart';

void myFunction() {
const template = '''
<html>
<body>
<h1>Hello</h1>
<img src=profile['avatar']>
</body>
</html>
''';

var buf = CodeBuffer();
var document = jael.parseDocument(template, sourceUrl: 'test.jael', asDSX: false);
var scope = SymbolTable(values: {
'profile': {
'avatar': 'thosakwe.png',
}
});

const jael.Renderer().render(document, buf, scope);
print(buf);
}
copied to clipboard
Pre-processing (i.e. handling of blocks and includes) is handled
by package:jael_preprocessor..

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.