-
-
15 Mar 2020 00:49:36 UTC
- Distribution: Template-Liquid
- Module version: v1.0.19
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (4)
- Testers (237 / 12 / 22)
- Kwalitee
Bus factor: 1- 80.67% Coverage
- License: artistic_2
- Perl: v5.22.0
- Activity
24 month- Tools
- Download (57.82KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 3 contributors-
Ailin Nemui
-
Max Maischein
-
Michal Wojciechowski
NAME
Template::Liquid::Tag::Raw - General Purpose Content Container
Synopsis
{% raw %} In Handlebars, {{ this }} will be HTML-escaped, but {{{ that }}} will not. {% endraw %}
Description
raw
is a simple tag. Child nodes are rendered as they appear in the template. Code inside araw
tag is dumped as-is during rendering. So, this...{% raw %} {% for article in articles %} <div class='post' id='{{ article.id }}'> <p class='title'>{{ article.title | capitalize }}</p> {% comment %} Unless we're viewing a single article, we will truncate article.body at 50 words and insert a 'Read more' link. {% endcomment %} ... </div> {% endfor %} {% endraw %}
...would print...
{% for article in articles %} <div class='post' id='{{ article.id }}'> <p class='title'>{{ article.title | capitalize }}</p> {% comment %} Unless we're viewing a single article, we will truncate article.body at 50 words and insert a 'Read more' link. {% endcomment %} ... </div> {% endfor %}
See Also
Liquid for Designers: http://wiki.github.com/tobi/liquid/liquid-for-designers
Author
Sanko Robinson <sanko@cpan.org> - http://sankorobinson.com/
The original Liquid template system was developed by jadedPixel (http://jadedpixel.com/) and Tobias Lütke (http://blog.leetsoft.com/).
License and Legal
Copyright (C) 2012 by Sanko Robinson <sanko@cpan.org>
This program is free software; you can redistribute it and/or modify it under the terms of The Artistic License 2.0. See the LICENSE file included with this distribution or http://www.perlfoundation.org/artistic_license_2_0. For clarification, see http://www.perlfoundation.org/artistic_2_0_notes.
When separated from the distribution, all original POD documentation is covered by the Creative Commons Attribution-Share Alike 3.0 License. See http://creativecommons.org/licenses/by-sa/3.0/us/legalcode. For clarification, see http://creativecommons.org/licenses/by-sa/3.0/us/.
Module Install Instructions
To install Template::Liquid, copy and paste the appropriate command in to your terminal.
cpanm Template::Liquid
perl -MCPAN -e shell install Template::Liquid
For more information on module installation, please visit the detailed CPAN module installation guide.