This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Run the following if you haven't already:
gem sources -a http://gems.github.com
Install the gem(s):
sudo gem install tobi-liquid
Tobias Lütke (author)
Mon Jun 23 06:47:41 -0700 2008
commit 6dd4f716f824b66680976f564cfc85615283fe9e
tree 2faccd8b59b98f214ebfca63fac4bf43837a35bb
parent 5c259a3f49a3305bc638f3f044843e78a9684501
tree 2faccd8b59b98f214ebfca63fac4bf43837a35bb
parent 5c259a3f49a3305bc638f3f044843e78a9684501
liquid /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Jun 23 06:39:35 -0700 2008 | [Tobias Lütke] |
| |
CHANGELOG | Thu May 08 08:34:43 -0700 2008 | [Tobias Lütke] |
| |
History.txt | Thu May 08 08:34:43 -0700 2008 | [Tobias Lütke] |
| |
MIT-LICENSE | Thu May 08 08:28:13 -0700 2008 | [Tobias Lütke] |
| |
Manifest.txt | Mon Jun 23 06:42:15 -0700 2008 | [Tobias Lütke] |
| |
README.txt | Thu May 08 08:34:43 -0700 2008 | [Tobias Lütke] |
| |
Rakefile | Thu May 08 08:34:43 -0700 2008 | [Tobias Lütke] |
| |
example/ | Thu May 08 08:28:13 -0700 2008 | [Tobias Lütke] |
| |
init.rb | Thu May 08 08:28:13 -0700 2008 | [Tobias Lütke] |
| |
lib/ | Wed Jun 04 08:22:47 -0700 2008 | [stefanoc] |
| |
liquid.gemspec | Mon Jun 23 06:47:41 -0700 2008 | [Tobias Lütke] |
| |
test/ | Wed May 21 20:58:12 -0700 2008 | [nbibler] |
README.txt
= Liquid template engine
Liquid is a template engine which I wrote for very specific requirements
* It has to have beautiful and simple markup.
Template engines which don't produce good looking markup are no fun to use.
* It needs to be non evaling and secure. Liquid templates are made so that users can edit them. You don't want to run
code on your server which your users wrote.
* It has to be stateless. Compile and render steps have to be seperate so that the expensive parsing and compiling can
be done once and later on you can
just render it passing in a hash with local variables and objects.
== Why should i use Liquid
* You want to allow your users to edit the appearance of your application but don't want them to run insecure code on
your server.
* You want to render templates directly from the database
* You like smarty style template engines
* You need a template engine which does HTML just as well as Emails
* You don't like the markup of your current one
== What does it look like?
<ul id="products">
{% for product in products %}
<li>
<h2>{{product.name}}</h2>
Only {{product.price | price }}
{{product.description | prettyprint | paragraph }}
</li>
{% endfor %}
</ul>
== Howto use Liquid
Liquid supports a very simple API based around the Liquid::Template class.
For standard use you can just pass it the content of a file and call render with a parameters hash.
@template = Liquid::Template.parse("hi {{name}}") # Parses and compiles the template
@template.render( 'name' => 'tobi' ) # => "hi tobi" 




