https://github.com/gotomain/fluid
A small, high performance, Liquid template rendering engine written in C for embedded (IoT) devices.
https://github.com/gotomain/fluid
embedded-website iot-device iot-website liquid liquid-c liquid-tag liquid-template-engine
Last synced: about 2 months ago
JSON representation
A small, high performance, Liquid template rendering engine written in C for embedded (IoT) devices.
- Host: GitHub
- URL: https://github.com/gotomain/fluid
- Owner: goToMain
- License: apache-2.0
- Created: 2020-07-30T07:03:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-16T03:27:05.000Z (over 4 years ago)
- Last Synced: 2025-02-07T05:28:23.647Z (3 months ago)
- Topics: embedded-website, iot-device, iot-website, liquid, liquid-c, liquid-tag, liquid-template-engine
- Language: C
- Homepage:
- Size: 80.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fluid - A liquid template renderer
Fluid is a tool used to parse/render liquid templated source files to plain
text files. A typical use case is HTML files with liquid tags. Read more about
liquid grammar [here][1].## Dependencies
- cmake (host)
- [LibYAML][2] (host)## Build
``` bash
git clone https://github.com/goToMain/fluid --recurse-submodules
cd fluid
mkdir build && cd build
cmake ..
make
```## Contribution
This project is actively developed and maintained. Contributions are always
welcome. Create PR/Issues at [https://github.com/goToMain/fluid][3]## License
This software is distributed under the terms of Apache-2.0 license. If you don't
know what that means/implies, you can consider it is as "free as in beer".[1]: https://shopify.github.io/liquid/
[2]: https://github.com/yaml/libyaml
[3]: https://github.com/goToMain/fluid