diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 27 |
1 files changed, 21 insertions, 6 deletions
@@ -1,10 +1,10 @@ -Unja [![Build Status](https://img.shields.io/travis/dannyvankooten/unja/master)](https://travis-ci.org/dannyvankooten/unja) - [![License: MIT](https://img.shields.io/github/license/dannyvankooten/unja)](https://github.com/dannyvankooten/unja/blob/master/LICENSE) -========== +# Unja A template engine for C, inspired by Jinja and Liquid. -### Example +Forked from https://github.com/dannyvankooten/unja + +## Example File `base.tmpl`: ```html+jinja @@ -53,6 +53,21 @@ int main() { } ``` -### License +## Changes from upstream + +### Done + +* Hashmap capacity can be set programmatically and it grows/shrinks in size + when the load increases/decreases to avoid collisions/save memory. +* Include guards. + +### TODO + +* Let the library user decide how to handle errors, instead of just aborting the + program. +* Do not print anything to stdout/stderr. It should be up to the library user to + decide what and when to print a message. + +## License -MIT
\ No newline at end of file +MIT |