jael3 4.0.0 copy "jael3: ^4.0.0" to clipboard
jael3: ^4.0.0 copied to clipboard

outdated

A simple server-side HTML templating engine for Dart. Comparable to Blade or Liquid.

jael3 #

version Null Safety Gitter

License

A simple server-side HTML templating engine for Dart.

See documentation.

Installation #

In your pubspec.yaml:

dependencies:
  jael3: ^4.0.0

API #

The core jael3 package exports classes for parsing Jael templates, an AST library, and a Renderer class that generates HTML on-the-fly.

import 'package:angel3_code_buffer/code_buffer.dart';
import 'package:jael3/jael.dart' as jael;
import 'package:angel3_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);
}

Pre-processing (i.e. handling of blocks and includes) is handled by package:jael3_preprocessor..

1
likes
0
pub points
57%
popularity

Publisher

verified publisherdukefirehawk.com

A simple server-side HTML templating engine for Dart. Comparable to Blade or Liquid.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

angel3_code_buffer, angel3_symbol_table, args, charcode, collection, matcher, source_span, string_scanner

More

Packages that depend on jael3