Skip to content

Commit

Permalink
Nested lists
Browse files Browse the repository at this point in the history
  • Loading branch information
brett-smith committed Nov 16, 2023
1 parent ad6c388 commit c707f10
Show file tree
Hide file tree
Showing 4 changed files with 274 additions and 42 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A lightweight Java string template engine. While it is intended to be used with
will work with any text content. While small, it has some unique features and is fast and
flexible.

It requires just 4 HTML-like tags, and a bash-like variable expression syntax.
It requires just 5 HTML-like tags, and a bash-like variable expression syntax.

## Status

Expand All @@ -25,7 +25,7 @@ Feature complete. Just some test coverage to complete and addition of Javadoc.
* Fast. Single pass parser, use lambdas to compute template components only when
they are actually needed.
* Simple Java. Public API consists of just 2 main classes, `TemplateModel` and `TemplateProcessor`.
* Simple Content. Just `<t:if>` (and `<t:else>`), `<t:include>` and `<t:list>`. Bash like variable such as `${myVar}`.
* Simple Content. Just `<t:if>` (and `<t:else>`), `<t:include>`, `<t:template>` and `<t:list>`. Bash like variable such as `${myVar}`.
* Internationalisation features.

## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.sshtools</groupId>
<artifactId>tinytemplate</artifactId>
<version>0.9.2</version>
<version>0.9.3-SNAPSHOT</version>
<name>TinyTemplate</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Loading

0 comments on commit c707f10

Please sign in to comment.