I had a look at your http server framework and it's amazing. I am impressed, really.
I developed my own and it's ugly (I know) but it makes its job and it's extremely compact. But the temptation to use an elegant, robust and versatile httpd framework is huge.
For my purposes this is something I am looking for in a microhttpd framework (let's call these requirements

- Handlers for dynamic functions. Let's say I want to call a function that gets temperature/humidity and format them in nice html using template.
- HTML templating - I wonder if (the remarkable) utemplate by @pfalcon https://github.com/pfalcon/utemplate could be integrated or just another templating mechanism that is small enough to be competitive with custom made dynamic functions that adds html strings to the code.
Of course frozen byte code instead of cross-compiled should be better. But this is up to the developers

Thank you