Created
October 21, 2012 04:29
-
-
Save lost-theory/3925738 to your computer and use it in GitHub Desktop.
different delimiters in jinja2 + flask
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, render_template_string, request | |
class CustomFlask(Flask): | |
jinja_options = Flask.jinja_options.copy() | |
jinja_options.update(dict( | |
block_start_string='<%', | |
block_end_string='%>', | |
variable_start_string='%%', | |
variable_end_string='%%', | |
comment_start_string='<#', | |
comment_end_string='#>', | |
)) | |
app = CustomFlask(__name__) | |
app.config['DEBUG'] = True | |
@app.route("/") | |
def index(): | |
template = """ | |
<# this is a jinja2 comment #> | |
<% block stuff %> | |
<h1>Jinja2</h1> | |
<% for i in range(5) %> | |
<p>Hello %% name %%!</p> | |
<% endfor %> | |
<h1>Mustache</h1> | |
<p>{{something}}</p> | |
{{#items}} | |
{{#first}} | |
<li><strong>{{name}}</strong></li> | |
{{/first}} | |
{{#link}} | |
<li><a href="{{url}}">{{name}}</a></li> | |
{{/link}} | |
{{/items}} | |
<% endblock %> | |
""" | |
return render_template_string(template, name=request.values.get('name', 'world')) | |
if __name__ == "__main__": | |
app.run(use_debugger=True, use_reloader=True) |
Like it! Nice way of getting variable delimiters in different frameworks to play with each other.
¡Beautiful! Thanks
Great!
Great!
Still works, thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
very nice