diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-11-05 19:47:06 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-11-05 19:47:06 +0300 |
commit | 33bdfde2be7e1c568d5e12ad1b27b7023dbd1b1b (patch) | |
tree | 2532b9c0cf7dec1ab6c44f4279adafe3ac1212de | |
parent | 975465c3f5302117eef779672ada76627371c3bf (diff) | |
download | unja-33bdfde2be7e1c568d5e12ad1b27b7023dbd1b1b.tar.gz unja-33bdfde2be7e1c568d5e12ad1b27b7023dbd1b1b.zip |
Updated readme to reflect this is a fork
-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 |