Home | History | Annotate | Download | only in handlebar

Lines Matching refs:template

26   template = Handlebar('hello {{#foo bar/}} world')
34 print(template.render(input).text)
49 '''The exception thrown while parsing a template.
767 '''The tokens that can appear in a template.
823 '''Tokeniser for template parsing.
916 '''A handlebar template.
918 def __init__(self, template, name=None):
919 self.source = template
921 tokens = _TokenStream(template)
924 raise ParseException('Template is empty')
1130 '''Renders this template given a variable number of contexts to read out