| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Demos-Compiled.zip | 2026-06-20 | 506.1 MB | |
| Tools-Compiled.zip | 2026-06-20 | 62.7 MB | |
| Alcinoe 13.1.20 source code.tar.gz | 2026-06-20 | 336.7 MB | |
| Alcinoe 13.1.20 source code.zip | 2026-06-20 | 342.5 MB | |
| README.md | 2026-06-20 | 885 Bytes | |
| Totals: 5 Items | 1.2 GB | 4 | |
Added Alcinoe.Handlebars unit with TALHandlebars, a native Delphi
Handlebars-compatible template engine:
- renders text from a template combined with a
TALJsonNodeAcontext - context-aware value resolution (
this,.,..,../,@root, nested property paths using.or/separators) - block helpers
{{#if}},{{#unless}},{{#each}},{{#with}}with{{else}}(inverse) branches - built-in data variables
@index,@key,@first,@last - built-in helpers
lookup,concat,eq,ne,gt,lt,gte,lte,and,or,not, and partials via{{> partial}} - subexpressions, e.g.
{{#if (eq status "active")}} - automatic HTML escaping for
{{value}}, raw output for{{{value}}}, whitespace control with{{~/~}}, and{{! }}/{{!-- --}}comments - custom helpers via
RegisterHelper