-
See #6 in Templates (or search for "pragma") in http://google-ctemplate.googlecode.com/svn/trunk/doc/howto.html
This will allow us to add experimental features and plugins, ala the dot-notation and t…
-
In this branch I have added support for section separators, as I wanted to format some plain text
documents and didn't want the separator to appear after the last element. This was done in the style …
-
I added PRAGMA to Mustache tonight and thought it might be nice to support options, as ctemplate does.
For example:
```
{{%IMPLICIT-ITERATOR}}
{{#names}}
* {{.}}
{{/names}}
{{%IMPLICIT-ITERATOR i…
-
I'd like to request that template tags be allowed to span multiple lines. Mostly this is useful for long comments, such as an overview of how the template works. I believe that ctemplate currently all…
-
ctemplate lets you swap out `{{` and `}}` for whatever you want, such as ``. Mustache should, too.
ctemplate's docs on the subject: http://google-ctemplate.googlecode.com/svn/trunk/doc/howto.html (se…
-
As per http://google-ctemplate.googlecode.com/svn/trunk/doc/howto.html
"Not all template elements may exist in the dictionary. In this example, {{META_TAGS}} is not found in the dictionary. This is p…
-
When declaring a section, it'd be nice to have an `if empty`/`else` tag, like django's `{% empty %}` tag. Something like:
```
{{# collection }}
{{ name }}
{{~ collection }}
Nothing to see here.
{…
foca updated
15 years ago
-
I could whip up a quick peg/leg parser if your interested? at least then we can abstract the parser from the language implementation